diff options
Diffstat (limited to 'src/ext/ComPlus/ca')
-rw-r--r-- | src/ext/ComPlus/ca/complusca.vcxproj | 8 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cpapprolesched.cpp | 8 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cpappsched.cpp | 4 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cpasmsched.cpp | 22 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cppartrolesched.cpp | 6 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cppartsched.cpp | 6 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cpsubssched.cpp | 4 | ||||
-rw-r--r-- | src/ext/ComPlus/ca/cputilsched.cpp | 2 |
8 files changed, 34 insertions, 26 deletions
diff --git a/src/ext/ComPlus/ca/complusca.vcxproj b/src/ext/ComPlus/ca/complusca.vcxproj index 0bd490b1..696f7dd8 100644 --- a/src/ext/ComPlus/ca/complusca.vcxproj +++ b/src/ext/ComPlus/ca/complusca.vcxproj | |||
@@ -19,6 +19,14 @@ | |||
19 | <Configuration>Release</Configuration> | 19 | <Configuration>Release</Configuration> |
20 | <Platform>x64</Platform> | 20 | <Platform>x64</Platform> |
21 | </ProjectConfiguration> | 21 | </ProjectConfiguration> |
22 | <ProjectConfiguration Include="Debug|ARM64"> | ||
23 | <Configuration>Debug</Configuration> | ||
24 | <Platform>ARM64</Platform> | ||
25 | </ProjectConfiguration> | ||
26 | <ProjectConfiguration Include="Release|ARM64"> | ||
27 | <Configuration>Release</Configuration> | ||
28 | <Platform>ARM64</Platform> | ||
29 | </ProjectConfiguration> | ||
22 | </ItemGroup> | 30 | </ItemGroup> |
23 | 31 | ||
24 | <PropertyGroup Label="Globals"> | 32 | <PropertyGroup Label="Globals"> |
diff --git a/src/ext/ComPlus/ca/cpapprolesched.cpp b/src/ext/ComPlus/ca/cpapprolesched.cpp index a268d156..d4f5d2be 100644 --- a/src/ext/ComPlus/ca/cpapprolesched.cpp +++ b/src/ext/ComPlus/ca/cpapprolesched.cpp | |||
@@ -6,17 +6,17 @@ | |||
6 | // sql queries | 6 | // sql queries |
7 | 7 | ||
8 | LPCWSTR vcsApplicationRoleQuery = | 8 | LPCWSTR vcsApplicationRoleQuery = |
9 | L"SELECT `ApplicationRole`, `Application_`, `Component_`, `Name` FROM `ComPlusApplicationRole`"; | 9 | L"SELECT `ApplicationRole`, `Application_`, `Component_`, `Name` FROM `Wix4ComPlusApplicationRole`"; |
10 | enum eApplicationRoleQuery { arqApplicationRole = 1, arqApplication, arqComponent, arqName }; | 10 | enum eApplicationRoleQuery { arqApplicationRole = 1, arqApplication, arqComponent, arqName }; |
11 | 11 | ||
12 | LPCWSTR vcsUserInApplicationRoleQuery = | 12 | LPCWSTR vcsUserInApplicationRoleQuery = |
13 | L"SELECT `UserInApplicationRole`, `ApplicationRole_`, `ComPlusUserInApplicationRole`.`Component_`, `Domain`, `Name` FROM `ComPlusUserInApplicationRole`, `User` WHERE `User_` = `User`"; | 13 | L"SELECT `UserInApplicationRole`, `ApplicationRole_`, `ComPlusUserInApplicationRole`.`Component_`, `Domain`, `Name` FROM `Wix4ComPlusUserInApplicationRole`, `Wix4User` WHERE `User_` = `User`"; |
14 | LPCWSTR vcsGroupInApplicationRoleQuery = | 14 | LPCWSTR vcsGroupInApplicationRoleQuery = |
15 | L"SELECT `GroupInApplicationRole`, `ApplicationRole_`, `ComPlusGroupInApplicationRole`.`Component_`, `Domain`, `Name` FROM `ComPlusGroupInApplicationRole`, `Group` WHERE `Group_` = `Group`"; | 15 | L"SELECT `GroupInApplicationRole`, `ApplicationRole_`, `ComPlusGroupInApplicationRole`.`Component_`, `Domain`, `Name` FROM `Wix4ComPlusGroupInApplicationRole`, `Group` WHERE `Group_` = `Group`"; |
16 | enum eTrusteeInApplicationRoleQuery { tiarqUserInApplicationRole = 1, tiarqApplicationRole, tiarqComponent, tiarqDomain, tiarqName }; | 16 | enum eTrusteeInApplicationRoleQuery { tiarqUserInApplicationRole = 1, tiarqApplicationRole, tiarqComponent, tiarqDomain, tiarqName }; |
17 | 17 | ||
18 | LPCWSTR vcsApplicationRolePropertyQuery = | 18 | LPCWSTR vcsApplicationRolePropertyQuery = |
19 | L"SELECT `Name`, `Value` FROM `ComPlusApplicationRoleProperty` WHERE `ApplicationRole_` = ?"; | 19 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusApplicationRoleProperty` WHERE `ApplicationRole_` = ?"; |
20 | 20 | ||
21 | 21 | ||
22 | // property definitions | 22 | // property definitions |
diff --git a/src/ext/ComPlus/ca/cpappsched.cpp b/src/ext/ComPlus/ca/cpappsched.cpp index 1fb2203b..4d867f6b 100644 --- a/src/ext/ComPlus/ca/cpappsched.cpp +++ b/src/ext/ComPlus/ca/cpappsched.cpp | |||
@@ -6,11 +6,11 @@ | |||
6 | // sql queries | 6 | // sql queries |
7 | 7 | ||
8 | LPCWSTR vcsApplicationQuery = | 8 | LPCWSTR vcsApplicationQuery = |
9 | L"SELECT `Application`, `Component_`, `Partition_`, `Id`, `Name` FROM `ComPlusApplication`"; | 9 | L"SELECT `Application`, `Component_`, `Partition_`, `Id`, `Name` FROM `Wix4ComPlusApplication`"; |
10 | enum eApplicationQuery { aqApplication = 1, aqComponent, aqPartition, aqID, aqName }; | 10 | enum eApplicationQuery { aqApplication = 1, aqComponent, aqPartition, aqID, aqName }; |
11 | 11 | ||
12 | LPCWSTR vcsApplicationPropertyQuery = | 12 | LPCWSTR vcsApplicationPropertyQuery = |
13 | L"SELECT `Name`, `Value` FROM `ComPlusApplicationProperty` WHERE `Application_` = ?"; | 13 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusApplicationProperty` WHERE `Application_` = ?"; |
14 | 14 | ||
15 | 15 | ||
16 | // property definitions | 16 | // property definitions |
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 | ||
diff --git a/src/ext/ComPlus/ca/cppartrolesched.cpp b/src/ext/ComPlus/ca/cppartrolesched.cpp index a988f8e3..cfaeb905 100644 --- a/src/ext/ComPlus/ca/cppartrolesched.cpp +++ b/src/ext/ComPlus/ca/cppartrolesched.cpp | |||
@@ -6,13 +6,13 @@ | |||
6 | // sql queries | 6 | // sql queries |
7 | 7 | ||
8 | LPCWSTR vcsPartitionRoleQuery = | 8 | LPCWSTR vcsPartitionRoleQuery = |
9 | L"SELECT `PartitionRole`, `Partition_`, `Component_`, `Name` FROM `ComPlusPartitionRole`"; | 9 | L"SELECT `PartitionRole`, `Partition_`, `Component_`, `Name` FROM `Wix4ComPlusPartitionRole`"; |
10 | enum ePartitionRoleQuery { prqPartitionRole = 1, prqPartition, prqComponent, prqName }; | 10 | enum ePartitionRoleQuery { prqPartitionRole = 1, prqPartition, prqComponent, prqName }; |
11 | 11 | ||
12 | LPCWSTR vcsUserInPartitionRoleQuery = | 12 | LPCWSTR vcsUserInPartitionRoleQuery = |
13 | L"SELECT `UserInPartitionRole`, `PartitionRole_`, `ComPlusUserInPartitionRole`.`Component_`, `Domain`, `Name` FROM `ComPlusUserInPartitionRole`, `User` WHERE `User_` = `User`"; | 13 | L"SELECT `UserInPartitionRole`, `PartitionRole_`, `ComPlusUserInPartitionRole`.`Component_`, `Domain`, `Name` FROM `Wix4ComPlusUserInPartitionRole`, `Wix4User` WHERE `User_` = `User`"; |
14 | LPCWSTR vcsGroupInPartitionRoleQuery = | 14 | LPCWSTR vcsGroupInPartitionRoleQuery = |
15 | L"SELECT `GroupInPartitionRole`, `PartitionRole_`, `ComPlusGroupInPartitionRole`.`Component_`, `Domain`, `Name` FROM `ComPlusGroupInPartitionRole`, `Group` WHERE `Group_` = `Group`"; | 15 | L"SELECT `GroupInPartitionRole`, `PartitionRole_`, `ComPlusGroupInPartitionRole`.`Component_`, `Domain`, `Name` FROM `Wix4ComPlusGroupInPartitionRole`, `Group` WHERE `Group_` = `Group`"; |
16 | enum eTrusteeInPartitionRoleQuery { tiprqUserInPartitionRole = 1, tiprqPartitionRole, tiprqComponent, tiprqDomain, tiprqName }; | 16 | enum eTrusteeInPartitionRoleQuery { tiprqUserInPartitionRole = 1, tiprqPartitionRole, tiprqComponent, tiprqDomain, tiprqName }; |
17 | 17 | ||
18 | 18 | ||
diff --git a/src/ext/ComPlus/ca/cppartsched.cpp b/src/ext/ComPlus/ca/cppartsched.cpp index 7cd98791..d4065d34 100644 --- a/src/ext/ComPlus/ca/cppartsched.cpp +++ b/src/ext/ComPlus/ca/cppartsched.cpp | |||
@@ -6,14 +6,14 @@ | |||
6 | // sql queries | 6 | // sql queries |
7 | 7 | ||
8 | LPCWSTR vcsPartitionQuery = | 8 | LPCWSTR vcsPartitionQuery = |
9 | L"SELECT `Partition`, `Component_`, `Id`, `Name` FROM `ComPlusPartition`"; | 9 | L"SELECT `Partition`, `Component_`, `Id`, `Name` FROM `Wix4ComPlusPartition`"; |
10 | enum ePartitionQuery { pqPartition = 1, pqComponent, pqID, pqName }; | 10 | enum ePartitionQuery { pqPartition = 1, pqComponent, pqID, pqName }; |
11 | 11 | ||
12 | LPCWSTR vcsPartitionPropertyQuery = | 12 | LPCWSTR vcsPartitionPropertyQuery = |
13 | L"SELECT `Name`, `Value` FROM `ComPlusPartitionProperty` WHERE `Partition_` = ?"; | 13 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusPartitionProperty` WHERE `Partition_` = ?"; |
14 | 14 | ||
15 | LPCWSTR vcsPartitionUserQuery = | 15 | LPCWSTR vcsPartitionUserQuery = |
16 | L"SELECT `PartitionUser`, `Partition_`, `ComPlusPartitionUser`.`Component_`, `Domain`, `Name` FROM `ComPlusPartitionUser`, `User` WHERE `User_` = `User`"; | 16 | L"SELECT `PartitionUser`, `Partition_`, `ComPlusPartitionUser`.`Component_`, `Domain`, `Name` FROM `Wix4ComPlusPartitionUser`, `Wix4User` WHERE `User_` = `User`"; |
17 | enum ePartitionUserQuery { puqPartitionUser = 1, puqPartition, puqComponent, puqDomain, puqName }; | 17 | enum ePartitionUserQuery { puqPartitionUser = 1, puqPartition, puqComponent, puqDomain, puqName }; |
18 | 18 | ||
19 | 19 | ||
diff --git a/src/ext/ComPlus/ca/cpsubssched.cpp b/src/ext/ComPlus/ca/cpsubssched.cpp index df15fd03..fbec3a2d 100644 --- a/src/ext/ComPlus/ca/cpsubssched.cpp +++ b/src/ext/ComPlus/ca/cpsubssched.cpp | |||
@@ -6,11 +6,11 @@ | |||
6 | // sql queries | 6 | // sql queries |
7 | 7 | ||
8 | LPCWSTR vcsSubscriptionQuery = | 8 | LPCWSTR vcsSubscriptionQuery = |
9 | L"SELECT `Subscription`, `ComPlusComponent_`, `Component_`, `Id`, `Name`, `EventCLSID`, `PublisherID` FROM `ComPlusSubscription`"; | 9 | L"SELECT `Subscription`, `ComPlusComponent_`, `Component_`, `Id`, `Name`, `EventCLSID`, `PublisherID` FROM `Wix4ComPlusSubscription`"; |
10 | enum eSubscriptionQuery { sqSubscription = 1, sqComPlusComponent, sqComponent, sqID, sqName, sqEventCLSID, sqPublisherID }; | 10 | enum eSubscriptionQuery { sqSubscription = 1, sqComPlusComponent, sqComponent, sqID, sqName, sqEventCLSID, sqPublisherID }; |
11 | 11 | ||
12 | LPCWSTR vcsSubscriptionPropertyQuery = | 12 | LPCWSTR vcsSubscriptionPropertyQuery = |
13 | L"SELECT `Name`, `Value` FROM `ComPlusSubscriptionProperty` WHERE `Subscription_` = ?"; | 13 | L"SELECT `Name`, `Value` FROM `Wix4ComPlusSubscriptionProperty` WHERE `Subscription_` = ?"; |
14 | 14 | ||
15 | 15 | ||
16 | // property definitions | 16 | // property definitions |
diff --git a/src/ext/ComPlus/ca/cputilsched.cpp b/src/ext/ComPlus/ca/cputilsched.cpp index 1a958c56..4a2fdfc6 100644 --- a/src/ext/ComPlus/ca/cputilsched.cpp +++ b/src/ext/ComPlus/ca/cputilsched.cpp | |||
@@ -13,7 +13,7 @@ LPCWSTR vcsComponentAttributesQuery = | |||
13 | L"SELECT `Attributes` FROM `Component` WHERE `Component` = ?"; | 13 | L"SELECT `Attributes` FROM `Component` WHERE `Component` = ?"; |
14 | enum eComponentAttributesQuery { caqAttributes = 1 }; | 14 | enum eComponentAttributesQuery { caqAttributes = 1 }; |
15 | 15 | ||
16 | LPCWSTR vcsUserQuery = L"SELECT `Domain`, `Name` FROM `User` WHERE `User` = ?"; | 16 | LPCWSTR vcsUserQuery = L"SELECT `Domain`, `Name` FROM `Wix4User` WHERE `User` = ?"; |
17 | enum eUserQuery { uqDomain = 1, uqName }; | 17 | enum eUserQuery { uqDomain = 1, uqName }; |
18 | 18 | ||
19 | enum ePropertyQuery { pqName = 1, pqValue }; | 19 | enum ePropertyQuery { pqName = 1, pqValue }; |