14 lines
312 B
C++
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);
|
|
} |