Files
2021-01-12 13:49:23 -08:00

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);