fix: remove VEH for now, yet again

This commit is contained in:
goaaats 2021-12-09 01:24:00 +01:00
parent d8e92dd9a9
commit 057052e12c
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -73,6 +73,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam)
// ============================== VEH ======================================== // // ============================== VEH ======================================== //
/*
printf("Initializing VEH... "); printf("Initializing VEH... ");
if(is_running_on_linux()) if(is_running_on_linux())
{ {
@ -84,6 +85,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam)
printf("Done!\n"); printf("Done!\n");
else printf("Failed!\n"); else printf("Failed!\n");
} }
*/
// =========================================================================== // // =========================================================================== //
@ -106,7 +108,7 @@ BOOL APIENTRY DllMain(const HMODULE hModule, const DWORD dwReason, LPVOID lpRese
g_hModule = hModule; g_hModule = hModule;
break; break;
case DLL_PROCESS_DETACH: case DLL_PROCESS_DETACH:
veh::remove_handler(); //veh::remove_handler();
break; break;
} }
return TRUE; return TRUE;