mirror of
https://github.com/bb107/MemoryModulePP
synced 2026-06-08 13:15:33 +00:00
37 lines
641 B
C
37 lines
641 B
C
#pragma once
|
|
|
|
#ifndef WIN32_NO_STATUS
|
|
#define WIN32_NO_STATUS
|
|
#include "../3rdparty/phnt/include/phnt_windows.h"
|
|
#include "../3rdparty/phnt/include/phnt.h"
|
|
#undef WIN32_NO_STATUS
|
|
#include <ntstatus.h>
|
|
#endif
|
|
|
|
// offsetof()
|
|
#include <cstddef>
|
|
|
|
//memory module base support
|
|
#include "MemoryModule.h"
|
|
|
|
//LDR_DATA_TABLE_ENTRY
|
|
#include "LdrEntry.h"
|
|
|
|
//rtl inverted function table for exception handling
|
|
#include "InvertedFunctionTable.h"
|
|
|
|
//base address index
|
|
#include "BaseAddressIndex.h"
|
|
|
|
//tls support
|
|
#include "MmpTls.h"
|
|
|
|
//DotNet support
|
|
#include "MmpDotNet.h"
|
|
|
|
//MemoryModulePP api interface
|
|
#include "Loader.h"
|
|
|
|
//utils
|
|
#include "Utils.h"
|