16 lines
339 B
C++
16 lines
339 B
C++
#include "stdafx.h"
|
|
|
|
//==============================================================================
|
|
|
|
BOOL APIENTRY DllMain(HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved)
|
|
{
|
|
__UNUSED(hModule);
|
|
__UNUSED(ul_reason_for_call);
|
|
__UNUSED(lpReserved);
|
|
|
|
return TRUE;
|
|
}
|
|
|