Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - // Public Domain
 - import std.c.windows.windows;
 - import core.dll_helper;
 - __gshared HINSTANCE g_hInst;
 - extern (Windows)
 - BOOL DllMain(HINSTANCE hInstance, ULONG ulReason, LPVOID pvReserved)
 - {
 - switch (ulReason)
 - {
 - case DLL_PROCESS_ATTACH:
 - g_hInst = hInstance;
 - dll_process_attach( hInstance, true );
 - break;
 - case DLL_PROCESS_DETACH:
 - dll_process_detach( hInstance, true );
 - break;
 - case DLL_THREAD_ATTACH:
 - dll_thread_attach( true, true );
 - break;
 - case DLL_THREAD_DETACH:
 - dll_thread_detach( true, true );
 - break;
 - }
 - return true;
 - }
 
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment