blob: 1cd8a6188c83a704cd19bef0222c4e42e4ac6db9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// dllmain.cpp : Implementation of DllMain.
#include "pch.h"
#include "framework.h"
#include "resource.h"
#include "TestComponentNative_i.h"
#include "dllmain.h"
CTestComponentNativeModule _AtlModule;
// DLL Entry Point
extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
hInstance;
return _AtlModule.DllMain(dwReason, lpReserved);
}
|