2025-11-28 00:35:46 +09:00

14 lines
312 B
C++

// dllmain.cpp : Implementation of DllMain.
#include "stdafx.h"
#include "resource.h"
#include "dllmain.h"
CSdkShaInfoModule _AtlModule;
// DLL Entry Point
extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
hInstance;
return _AtlModule.DllMain(dwReason, lpReserved);
}