mirror of
https://github.com/taviso/loadlibrary
synced 2026-06-08 17:42:38 +00:00
25 lines
699 B
C
25 lines
699 B
C
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <search.h>
|
|
#include <string.h>
|
|
|
|
#include "winnt_types.h"
|
|
#include "pe_linker.h"
|
|
#include "ntoskernel.h"
|
|
#include "log.h"
|
|
#include "winexports.h"
|
|
#include "util.h"
|
|
|
|
STATIC NTSTATUS WINAPI NtSetInformationProcess(HANDLE ProcessHandle,
|
|
PROCESS_INFORMATION_CLASS ProcessInformationClass,
|
|
PVOID ProcessInformation,
|
|
ULONG ProcessInformationLength)
|
|
{
|
|
DebugLog("%p", ProcessHandle);
|
|
return 0;
|
|
}
|
|
|
|
DECLARE_CRT_EXPORT("NtSetInformationProcess", NtSetInformationProcess);
|