diff options
| author | Bob Arnson <bob@firegiant.com> | 2022-02-13 00:46:54 -0500 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2022-02-13 08:47:43 -0500 |
| commit | 1be6baef099aa75fd45f41e55b8138ac2c7e0da3 (patch) | |
| tree | f441deda5d7a355aea7966150ed1116a40701296 /src/ext/ComPlus/ca/cpasmsched.cpp | |
| parent | cb509edac4749d77a4eb07e9314354279f99ff1a (diff) | |
| download | wix-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.cpp | 22 |
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 = | |||
| 14 | enum eModuleQuery { mqModule = 1 }; | 14 | enum eModuleQuery { mqModule = 1 }; |
| 15 | 15 | ||
| 16 | LPCWSTR vcsAssemblyQuery = | 16 | LPCWSTR 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`"; |
| 18 | enum eAssemblyQuery { aqAssembly = 1, aqComponent, aqApplication, aqAssemblyName, aqDllPath, aqTlbPath, aqPSDllPath, aqAttributes }; | 18 | enum eAssemblyQuery { aqAssembly = 1, aqComponent, aqApplication, aqAssemblyName, aqDllPath, aqTlbPath, aqPSDllPath, aqAttributes }; |
| 19 | 19 | ||
| 20 | LPCWSTR vcsComponentQuery = | 20 | LPCWSTR vcsComponentQuery = |
| 21 | L"SELECT `ComPlusComponent`, `CLSID` FROM `ComPlusComponent` WHERE `Assembly_` = ?"; | 21 | L"SELECT `ComPlusComponent`, `CLSID` FROM `Wix4ComPlusComponent` WHERE `Assembly_` = ?"; |
| 22 | enum eComponentQuery { cqComponent = 1, cqCLSID }; | 22 | enum eComponentQuery { cqComponent = 1, cqCLSID }; |
| 23 | 23 | ||
| 24 | LPCWSTR vcsComponentPropertyQuery = | 24 | LPCWSTR vcsComponentPropertyQuery = |
| 25 | L"SELECT `Name`, `Value` FROM `ComPlusComponentProperty` WHERE `ComPlusComponent_` = ?"; | 25 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusComponentProperty` WHERE `ComPlusComponent_` = ?"; |
| 26 | 26 | ||
| 27 | LPCWSTR vcsInterfaceQuery = | 27 | LPCWSTR vcsInterfaceQuery = |
| 28 | L"SELECT `Interface`, `IID` FROM `ComPlusInterface` WHERE `ComPlusComponent_` = ?"; | 28 | L"SELECT `Interface`, `IID` FROM `Wix4ComPlusInterface` WHERE `ComPlusComponent_` = ?"; |
| 29 | enum eInterfaceQuery { iqInterface = 1, iqIID }; | 29 | enum eInterfaceQuery { iqInterface = 1, iqIID }; |
| 30 | 30 | ||
| 31 | LPCWSTR vcsInterfacePropertyQuery = | 31 | LPCWSTR vcsInterfacePropertyQuery = |
| 32 | L"SELECT `Name`, `Value` FROM `ComPlusInterfaceProperty` WHERE `Interface_` = ?"; | 32 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusInterfaceProperty` WHERE `Interface_` = ?"; |
| 33 | 33 | ||
| 34 | LPCWSTR vcsMethodQuery = | 34 | LPCWSTR vcsMethodQuery = |
| 35 | L"SELECT `Method`, `Index`, `Name` FROM `ComPlusMethod` WHERE `Interface_` = ?"; | 35 | L"SELECT `Method`, `Index`, `Name` FROM `Wix4ComPlusMethod` WHERE `Interface_` = ?"; |
| 36 | enum eMethodQuery { mqMethod = 1, mqIndex, mqName }; | 36 | enum eMethodQuery { mqMethod = 1, mqIndex, mqName }; |
| 37 | 37 | ||
| 38 | LPCWSTR vcsMethodPropertyQuery = | 38 | LPCWSTR vcsMethodPropertyQuery = |
| 39 | L"SELECT `Name`, `Value` FROM `ComPlusMethodProperty` WHERE `Method_` = ?"; | 39 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusMethodProperty` WHERE `Method_` = ?"; |
| 40 | 40 | ||
| 41 | LPCWSTR vcsRoleForComponentQuery = | 41 | LPCWSTR vcsRoleForComponentQuery = |
| 42 | L"SELECT `RoleForComponent`, `ApplicationRole_`, `Component_` FROM `ComPlusRoleForComponent` WHERE `ComPlusComponent_` = ?"; | 42 | L"SELECT `RoleForComponent`, `ApplicationRole_`, `Component_` FROM `Wix4ComPlusRoleForComponent` WHERE `ComPlusComponent_` = ?"; |
| 43 | LPCWSTR vcsRoleForInterfaceQuery = | 43 | LPCWSTR vcsRoleForInterfaceQuery = |
| 44 | L"SELECT `RoleForInterface`, `ApplicationRole_`, `Component_` FROM `ComPlusRoleForInterface` WHERE `Interface_` = ?"; | 44 | L"SELECT `RoleForInterface`, `ApplicationRole_`, `Component_` FROM `Wix4ComPlusRoleForInterface` WHERE `Interface_` = ?"; |
| 45 | LPCWSTR vcsRoleForMethodQuery = | 45 | LPCWSTR vcsRoleForMethodQuery = |
| 46 | L"SELECT `RoleForMethod`, `ApplicationRole_`, `Component_` FROM `ComPlusRoleForMethod` WHERE `Method_` = ?"; | 46 | L"SELECT `RoleForMethod`, `ApplicationRole_`, `Component_` FROM `Wix4ComPlusRoleForMethod` WHERE `Method_` = ?"; |
| 47 | 47 | ||
| 48 | enum eRoleAssignmentQuery { raqKey = 1, raqApplicationRole, raqComponent }; | 48 | enum eRoleAssignmentQuery { raqKey = 1, raqApplicationRole, raqComponent }; |
| 49 | 49 | ||
| @@ -52,7 +52,7 @@ LPCWSTR vcsModuleComponentsQuery = | |||
| 52 | LPCWSTR vcsModuleDependencyQuery = | 52 | LPCWSTR vcsModuleDependencyQuery = |
| 53 | L"SELECT `ModuleID`, `RequiredID` FROM `ModuleDependency`"; | 53 | L"SELECT `ModuleID`, `RequiredID` FROM `ModuleDependency`"; |
| 54 | LPCWSTR vcsAssemblyDependencyQuery = | 54 | LPCWSTR vcsAssemblyDependencyQuery = |
| 55 | L"SELECT `Assembly_`, `RequiredAssembly_` FROM `ComPlusAssemblyDependency`"; | 55 | L"SELECT `Assembly_`, `RequiredAssembly_` FROM `Wix4ComPlusAssemblyDependency`"; |
| 56 | 56 | ||
| 57 | enum eKeyPairQuery { kpqFirstKey = 1, kpqSecondKey }; | 57 | enum eKeyPairQuery { kpqFirstKey = 1, kpqSecondKey }; |
| 58 | 58 | ||
