You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
727 B
24 lines
727 B
#pragma once
|
|
#define NT_SUCCESS(x) ((x) >= 0)
|
|
#define STATUS_INFO_LENGTH_MISMATCH 0xc0000004
|
|
#define CR3_OFFSET 0x28
|
|
|
|
using NTSTATUS = unsigned long;
|
|
using PVOID = void*;
|
|
|
|
using HANDLE = unsigned long;
|
|
using UCHAR = unsigned char;
|
|
using USHORT = unsigned short;
|
|
using ULONG = unsigned long;
|
|
using PULONG = unsigned long*;
|
|
typedef unsigned long long ULONG_PTR;
|
|
|
|
// this is a demo of resolving non-exported symbols...
|
|
// win32kfull.sys export example...
|
|
extern "C" void NtUserRegisterShellPTPListener();
|
|
extern "C" void* PiDDBCacheTable;
|
|
|
|
extern "C" unsigned char* IoGetCurrentProcess();
|
|
extern "C" unsigned long DbgPrint(const char* format, ...);
|
|
extern "C" PVOID ExAllocatePool(ULONG, ULONG);
|
|
extern "C" void ExFreePool(PVOID); |