Fix entry point.

This commit is contained in:
momo5502 2016-01-24 13:44:42 +01:00
parent a3ee040a20
commit 7db2956e45

View File

@ -6,7 +6,7 @@ namespace Main
void Initialize() void Initialize()
{ {
EntryPointHook.Uninstall(); Main::EntryPointHook.Uninstall();
Components::Loader::Initialize(); Components::Loader::Initialize();
} }
@ -14,6 +14,7 @@ namespace Main
{ {
Components::Loader::Uninitialize(); Components::Loader::Uninitialize();
} }
}
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{ {
@ -22,7 +23,7 @@ namespace Main
DWORD oldProtect; DWORD oldProtect;
VirtualProtect(GetModuleHandle(NULL), 0x6C73000, PAGE_EXECUTE_READWRITE, &oldProtect); VirtualProtect(GetModuleHandle(NULL), 0x6C73000, PAGE_EXECUTE_READWRITE, &oldProtect);
EntryPointHook.Initialize(0x6BAC0F, [] () Main::EntryPointHook.Initialize(0x6BAC0F, [] ()
{ {
__asm __asm
{ {
@ -40,4 +41,3 @@ namespace Main
return TRUE; return TRUE;
} }
}