aboutsummaryrefslogtreecommitdiff
path: root/src/ext/ComPlus/ca/cpasmsched.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2022-02-13 00:46:54 -0500
committerBob Arnson <github@bobs.org>2022-02-13 08:47:43 -0500
commit1be6baef099aa75fd45f41e55b8138ac2c7e0da3 (patch)
treef441deda5d7a355aea7966150ed1116a40701296 /src/ext/ComPlus/ca/cpasmsched.cpp
parentcb509edac4749d77a4eb07e9314354279f99ff1a (diff)
downloadwix-1be6baef099aa75fd45f41e55b8138ac2c7e0da3.tar.gz
wix-1be6baef099aa75fd45f41e55b8138ac2c7e0da3.tar.bz2
wix-1be6baef099aa75fd45f41e55b8138ac2c7e0da3.zip
Versioned extension ids: ComPlus, Msmq
Diffstat (limited to 'src/ext/ComPlus/ca/cpasmsched.cpp')
-rw-r--r--src/ext/ComPlus/ca/cpasmsched.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ext/ComPlus/ca/cpasmsched.cpp b/src/ext/ComPlus/ca/cpasmsched.cpp
index 2d0573a5..325808de 100644
--- a/src/ext/ComPlus/ca/cpasmsched.cpp
+++ b/src/ext/ComPlus/ca/cpasmsched.cpp
@@ -14,36 +14,36 @@ LPCWSTR vcsModuleQuery =
14enum eModuleQuery { mqModule = 1 }; 14enum eModuleQuery { mqModule = 1 };
15 15
16LPCWSTR vcsAssemblyQuery = 16LPCWSTR vcsAssemblyQuery =
17 L"SELECT `Assembly`, `Component_`, `Application_`, `AssemblyName`, `DllPath`, `TlbPath`, `PSDllPath`, `Attributes` FROM `ComPlusAssembly`"; 17 L"SELECT `Assembly`, `Component_`, `Application_`, `AssemblyName`, `DllPath`, `TlbPath`, `PSDllPath`, `Attributes` FROM `Wix4ComPlusAssembly`";
18enum eAssemblyQuery { aqAssembly = 1, aqComponent, aqApplication, aqAssemblyName, aqDllPath, aqTlbPath, aqPSDllPath, aqAttributes }; 18enum eAssemblyQuery { aqAssembly = 1, aqComponent, aqApplication, aqAssemblyName, aqDllPath, aqTlbPath, aqPSDllPath, aqAttributes };
19 19
20LPCWSTR vcsComponentQuery = 20LPCWSTR vcsComponentQuery =
21 L"SELECT `ComPlusComponent`, `CLSID` FROM `ComPlusComponent` WHERE `Assembly_` = ?"; 21 L"SELECT `ComPlusComponent`, `CLSID` FROM `Wix4ComPlusComponent` WHERE `Assembly_` = ?";
22enum eComponentQuery { cqComponent = 1, cqCLSID }; 22enum eComponentQuery { cqComponent = 1, cqCLSID };
23 23
24LPCWSTR vcsComponentPropertyQuery = 24LPCWSTR vcsComponentPropertyQuery =
25 L"SELECT `Name`, `Value` FROM `ComPlusComponentProperty` WHERE `ComPlusComponent_` = ?"; 25 L"SELECT `Name`, `Value` FROM `Wix4ComPlusComponentProperty` WHERE `ComPlusComponent_` = ?";
26 26
27LPCWSTR vcsInterfaceQuery = 27LPCWSTR vcsInterfaceQuery =
28 L"SELECT `Interface`, `IID` FROM `ComPlusInterface` WHERE `ComPlusComponent_` = ?"; 28 L"SELECT `Interface`, `IID` FROM `Wix4ComPlusInterface` WHERE `ComPlusComponent_` = ?";
29enum eInterfaceQuery { iqInterface = 1, iqIID }; 29enum eInterfaceQuery { iqInterface = 1, iqIID };
30 30
31LPCWSTR vcsInterfacePropertyQuery = 31LPCWSTR vcsInterfacePropertyQuery =
32 L"SELECT `Name`, `Value` FROM `ComPlusInterfaceProperty` WHERE `Interface_` = ?"; 32 L"SELECT `Name`, `Value` FROM `Wix4ComPlusInterfaceProperty` WHERE `Interface_` = ?";
33 33
34LPCWSTR vcsMethodQuery = 34LPCWSTR vcsMethodQuery =
35 L"SELECT `Method`, `Index`, `Name` FROM `ComPlusMethod` WHERE `Interface_` = ?"; 35 L"SELECT `Method`, `Index`, `Name` FROM `Wix4ComPlusMethod` WHERE `Interface_` = ?";
36enum eMethodQuery { mqMethod = 1, mqIndex, mqName }; 36enum eMethodQuery { mqMethod = 1, mqIndex, mqName };
37 37
38LPCWSTR vcsMethodPropertyQuery = 38LPCWSTR vcsMethodPropertyQuery =
39 L"SELECT `Name`, `Value` FROM `ComPlusMethodProperty` WHERE `Method_` = ?"; 39 L"SELECT `Name`, `Value` FROM `Wix4ComPlusMethodProperty` WHERE `Method_` = ?";
40 40
41LPCWSTR vcsRoleForComponentQuery = 41LPCWSTR vcsRoleForComponentQuery =
42 L"SELECT `RoleForComponent`, `ApplicationRole_`, `Component_` FROM `ComPlusRoleForComponent` WHERE `ComPlusComponent_` = ?"; 42 L"SELECT `RoleForComponent`, `ApplicationRole_`, `Component_` FROM `Wix4ComPlusRoleForComponent` WHERE `ComPlusComponent_` = ?";
43LPCWSTR vcsRoleForInterfaceQuery = 43LPCWSTR vcsRoleForInterfaceQuery =
44 L"SELECT `RoleForInterface`, `ApplicationRole_`, `Component_` FROM `ComPlusRoleForInterface` WHERE `Interface_` = ?"; 44 L"SELECT `RoleForInterface`, `ApplicationRole_`, `Component_` FROM `Wix4ComPlusRoleForInterface` WHERE `Interface_` = ?";
45LPCWSTR vcsRoleForMethodQuery = 45LPCWSTR vcsRoleForMethodQuery =
46 L"SELECT `RoleForMethod`, `ApplicationRole_`, `Component_` FROM `ComPlusRoleForMethod` WHERE `Method_` = ?"; 46 L"SELECT `RoleForMethod`, `ApplicationRole_`, `Component_` FROM `Wix4ComPlusRoleForMethod` WHERE `Method_` = ?";
47 47
48enum eRoleAssignmentQuery { raqKey = 1, raqApplicationRole, raqComponent }; 48enum eRoleAssignmentQuery { raqKey = 1, raqApplicationRole, raqComponent };
49 49
@@ -52,7 +52,7 @@ LPCWSTR vcsModuleComponentsQuery =
52LPCWSTR vcsModuleDependencyQuery = 52LPCWSTR vcsModuleDependencyQuery =
53 L"SELECT `ModuleID`, `RequiredID` FROM `ModuleDependency`"; 53 L"SELECT `ModuleID`, `RequiredID` FROM `ModuleDependency`";
54LPCWSTR vcsAssemblyDependencyQuery = 54LPCWSTR vcsAssemblyDependencyQuery =
55 L"SELECT `Assembly_`, `RequiredAssembly_` FROM `ComPlusAssemblyDependency`"; 55 L"SELECT `Assembly_`, `RequiredAssembly_` FROM `Wix4ComPlusAssemblyDependency`";
56 56
57enum eKeyPairQuery { kpqFirstKey = 1, kpqSecondKey }; 57enum eKeyPairQuery { kpqFirstKey = 1, kpqSecondKey };
58 58