Holy fucking shit I don't want to work on this. Sibly, you son of a ...

This commit is contained in:
Michael Fabain Dirks
2016-05-07 22:49:54 +02:00
parent b75ca4142c
commit aa22d21fb5
2577 changed files with 166501 additions and 194685 deletions
+20
View File
@@ -0,0 +1,20 @@
#include "../LinkerLib/std.h"
#include "../LinkerLib/linker.h"
#include <windows.h>
BOOL APIENTRY DllMain(HANDLE hModule,DWORD ul_reason_for_call,LPVOID lpReserved){
switch( ul_reason_for_call ){
case DLL_PROCESS_ATTACH:
linkerGetLinker();
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
default:
;
}
return TRUE;
}