#ifndef IMPORTS_H #define IMPORTS_H #include #include #include #include typedef NTSTATUS(WINAPI* pNtQueryInformationThread)(HANDLE, LONG, PVOID, ULONG, PULONG); typedef BOOLEAN(NTAPI pRtlDosPathNameToNtPathName_U(PCWSTR, PVOID, PCWSTR*, PVOID)); namespace usermode { class Imports { public: std::map ImportMap; void* NtQueryInformationThread; void* NtQueryVirtualMemory; void* RtlDosPathNameToNtPathName_U; Imports(); }; } #endif