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