mirror-ac/user/um/imports.h

25 lines
390 B
C
Raw Normal View History

2023-08-16 11:28:46 +02:00
#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;
2023-08-17 10:45:50 +02:00
2023-08-16 11:28:46 +02:00
void* NtQueryInformationThread;
2023-08-17 10:45:50 +02:00
void* NtQueryVirtualMemory;
2023-08-16 11:28:46 +02:00
Imports();
};
}
#endif