mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2024-12-02 13: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 =================================*/
|