aboutsummaryrefslogtreecommitdiff
path: root/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/framework.h
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/framework.h
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/framework.h')
-rw-r--r--src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/framework.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/framework.h b/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/framework.h
new file mode 100644
index 00000000..bdecff6a
--- /dev/null
+++ b/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNative/framework.h
@@ -0,0 +1,21 @@
1#pragma once
2
3#ifndef STRICT
4#define STRICT
5#endif
6
7#include "targetver.h"
8
9#define _ATL_APARTMENT_THREADED
10
11#define _ATL_NO_AUTOMATIC_NAMESPACE
12
13#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
14
15
16#define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW
17
18#include "resource.h"
19#include <atlbase.h>
20#include <atlcom.h>
21#include <atlctl.h>