diff options
Diffstat (limited to 'src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp')
-rw-r--r-- | src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp b/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp new file mode 100644 index 00000000..1cd8a618 --- /dev/null +++ b/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp | |||
@@ -0,0 +1,16 @@ | |||
1 | // dllmain.cpp : Implementation of DllMain. | ||
2 | |||
3 | #include "pch.h" | ||
4 | #include "framework.h" | ||
5 | #include "resource.h" | ||
6 | #include "TestComponentNative_i.h" | ||
7 | #include "dllmain.h" | ||
8 | |||
9 | CTestComponentNativeModule _AtlModule; | ||
10 | |||
11 | // DLL Entry Point | ||
12 | extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) | ||
13 | { | ||
14 | hInstance; | ||
15 | return _AtlModule.DllMain(dwReason, lpReserved); | ||
16 | } | ||