aboutsummaryrefslogtreecommitdiff
path: root/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp
diff options
context:
space:
mode:
authorBevan Weiss <bevan.weiss@gmail.com>2025-01-03 15:14:49 +1100
committerRob Mensching <rob@firegiant.com>2025-02-11 14:55:39 -0800
commitc49432f7d39dfe7fedc722b85cd1162bd5096ac1 (patch)
tree5f319208fffbb2a9215af627f7ee21a2425ece0e /src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp
parent254196975c1f82bf7079a9d56b5417f5da9d8d76 (diff)
downloadwix-c49432f7d39dfe7fedc722b85cd1162bd5096ac1.tar.gz
wix-c49432f7d39dfe7fedc722b85cd1162bd5096ac1.tar.bz2
wix-c49432f7d39dfe7fedc722b85cd1162bd5096ac1.zip
Migrate COM+ E2E tests from raw binaries to source code.
Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp')
-rw-r--r--src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/dllmain.cpp16
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
9CTestComponentNativeModule _AtlModule;
10
11// DLL Entry Point
12extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
13{
14 hInstance;
15 return _AtlModule.DllMain(dwReason, lpReserved);
16}