plugy/PlugY/PlugY.cpp

27 lines
720 B
C++
Raw Normal View History

/*=================================================================
File created by Yohann NICOLAS.
2017-01-23 19:34:12 +00:00
Main file of this DLL
=================================================================*/
2017-01-23 19:34:12 +00:00
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <windows.h>
2017-01-23 19:34:12 +00:00
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
2017-01-23 19:34:12 +00:00
switch (ul_reason_for_call)
{
2017-01-23 19:34:12 +00:00
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
2017-01-23 19:34:12 +00:00
return TRUE;
}
/*================================= END OF FILE =================================*/