mirror-ac/user/um/imports.h
lhodges1 676b3837ce e
2023-08-17 18:45:50 +10:00

25 lines
No EOL
390 B
C++

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