mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2024-11-30 12:36:02 +00:00
22 lines
516 B
C++
22 lines
516 B
C++
/*=================================================================
|
|
File created by Yohann NICOLAS.
|
|
|
|
Main file of this DLL
|
|
|
|
=================================================================*/
|
|
|
|
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain(HANDLE /*hModule*/, DWORD dwReason, LPVOID /*lpReserved*/)
|
|
{
|
|
switch(dwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
break;
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*================================= END OF FILE =================================*/ |