Files
2019-08-15 18:29:13 +08:00

9 lines
366 B
C

#pragma once
#include "moduleManipulation.h"
BOOL EnableDebugPrivilege(BOOL bEnable);
void* injectLoadLibrary(HANDLE toScanHandle, const wchar_t* toLoad);
unsigned char* getModuleBase(HANDLE toScanHandle, const wchar_t* moduleNameSubstring);
BOOL isModuleLoaded(HANDLE toScanHandle, const wchar_t* moduleNameSubstring);
DWORD getPIDForProcessByName(TCHAR* toFind);