blob: 2bd8cd297576dd2da0153d87afbf68bdf4457c73 [file] [log] [blame]
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
// avoid unused argument error while matching template
((void)hinstDLL);
((void)fdwReason);
((void)lpvReserved);
return TRUE;
}