migrate to advanced installer!

This commit is contained in:
zeffy
2017-07-03 18:55:41 -07:00
parent e4c411423b
commit c7f6de52e5
23 changed files with 542 additions and 362 deletions

13
wufuc_aihelper/dllmain.c Normal file
View File

@@ -0,0 +1,13 @@
#include <Windows.h>
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) {
switch (ul_reason_for_call) {
case DLL_PROCESS_ATTACH:
break;
case DLL_PROCESS_DETACH:
break;
default:
break;
}
return TRUE;
}