diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2019-02-04 20:06:58 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2019-02-04 20:11:32 -0600 |
commit | c239e0cc3a28a50c42c63b086ee62e17cf699104 (patch) | |
tree | 5ba3e85a9bb1aef22a9162629b248a8e27e2c43f /src/ca/cpasmsched.h | |
parent | cbc09b6cd6d0d0b8bf095a88d4d8333616637f71 (diff) | |
download | wix-c239e0cc3a28a50c42c63b086ee62e17cf699104.tar.gz wix-c239e0cc3a28a50c42c63b086ee62e17cf699104.tar.bz2 wix-c239e0cc3a28a50c42c63b086ee62e17cf699104.zip |
Integrate into latest v4.
Diffstat (limited to 'src/ca/cpasmsched.h')
-rw-r--r-- | src/ca/cpasmsched.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/ca/cpasmsched.h b/src/ca/cpasmsched.h index b5a68d7e..ddf4b6c0 100644 --- a/src/ca/cpasmsched.h +++ b/src/ca/cpasmsched.h | |||
@@ -13,7 +13,7 @@ enum eAssemblyAttributes | |||
13 | 13 | ||
14 | // structs | 14 | // structs |
15 | 15 | ||
16 | struct CPI_ROLE_ASSIGNMENT | 16 | struct CPISCHED_ROLE_ASSIGNMENT |
17 | { | 17 | { |
18 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; | 18 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; |
19 | 19 | ||
@@ -21,10 +21,10 @@ struct CPI_ROLE_ASSIGNMENT | |||
21 | 21 | ||
22 | CPI_APPLICATION_ROLE* pApplicationRole; | 22 | CPI_APPLICATION_ROLE* pApplicationRole; |
23 | 23 | ||
24 | CPI_ROLE_ASSIGNMENT* pNext; | 24 | CPISCHED_ROLE_ASSIGNMENT* pNext; |
25 | }; | 25 | }; |
26 | 26 | ||
27 | struct CPI_METHOD | 27 | struct CPISCHED_METHOD |
28 | { | 28 | { |
29 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; | 29 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; |
30 | WCHAR wzIndex[11 + 1]; | 30 | WCHAR wzIndex[11 + 1]; |
@@ -35,12 +35,12 @@ struct CPI_METHOD | |||
35 | 35 | ||
36 | int iRoleInstallCount; | 36 | int iRoleInstallCount; |
37 | int iRoleUninstallCount; | 37 | int iRoleUninstallCount; |
38 | CPI_ROLE_ASSIGNMENT* pRoles; | 38 | CPISCHED_ROLE_ASSIGNMENT* pRoles; |
39 | 39 | ||
40 | CPI_METHOD* pNext; | 40 | CPISCHED_METHOD* pNext; |
41 | }; | 41 | }; |
42 | 42 | ||
43 | struct CPI_INTERFACE | 43 | struct CPISCHED_INTERFACE |
44 | { | 44 | { |
45 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; | 45 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; |
46 | WCHAR wzIID[CPI_MAX_GUID + 1]; | 46 | WCHAR wzIID[CPI_MAX_GUID + 1]; |
@@ -50,15 +50,15 @@ struct CPI_INTERFACE | |||
50 | 50 | ||
51 | int iRoleInstallCount; | 51 | int iRoleInstallCount; |
52 | int iRoleUninstallCount; | 52 | int iRoleUninstallCount; |
53 | CPI_ROLE_ASSIGNMENT* pRoles; | 53 | CPISCHED_ROLE_ASSIGNMENT* pRoles; |
54 | 54 | ||
55 | int iMethodCount; | 55 | int iMethodCount; |
56 | CPI_METHOD* pMethods; | 56 | CPISCHED_METHOD* pMethods; |
57 | 57 | ||
58 | CPI_INTERFACE* pNext; | 58 | CPISCHED_INTERFACE* pNext; |
59 | }; | 59 | }; |
60 | 60 | ||
61 | struct CPI_COMPONENT | 61 | struct CPISCHED_COMPONENT |
62 | { | 62 | { |
63 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; | 63 | WCHAR wzKey[MAX_DARWIN_KEY + 1]; |
64 | WCHAR wzCLSID[CPI_MAX_GUID + 1]; | 64 | WCHAR wzCLSID[CPI_MAX_GUID + 1]; |
@@ -68,14 +68,14 @@ struct CPI_COMPONENT | |||
68 | 68 | ||
69 | int iRoleInstallCount; | 69 | int iRoleInstallCount; |
70 | int iRoleUninstallCount; | 70 | int iRoleUninstallCount; |
71 | CPI_ROLE_ASSIGNMENT* pRoles; | 71 | CPISCHED_ROLE_ASSIGNMENT* pRoles; |
72 | 72 | ||
73 | int iInterfaceCount; | 73 | int iInterfaceCount; |
74 | CPI_INTERFACE* pInterfaces; | 74 | CPISCHED_INTERFACE* pInterfaces; |
75 | 75 | ||
76 | ICatalogCollection* piSubsColl; | 76 | ICatalogCollection* piSubsColl; |
77 | 77 | ||
78 | CPI_COMPONENT* pNext; | 78 | CPISCHED_COMPONENT* pNext; |
79 | }; | 79 | }; |
80 | 80 | ||
81 | struct CPI_ASSEMBLY | 81 | struct CPI_ASSEMBLY |
@@ -89,7 +89,7 @@ struct CPI_ASSEMBLY | |||
89 | int iAttributes; | 89 | int iAttributes; |
90 | 90 | ||
91 | int iComponentCount; | 91 | int iComponentCount; |
92 | CPI_COMPONENT* pComponents; | 92 | CPISCHED_COMPONENT* pComponents; |
93 | 93 | ||
94 | BOOL fReferencedForInstall; | 94 | BOOL fReferencedForInstall; |
95 | BOOL fReferencedForUninstall; | 95 | BOOL fReferencedForUninstall; |
@@ -163,6 +163,6 @@ HRESULT CpiRoleAssignmentsUninstall( | |||
163 | ); | 163 | ); |
164 | HRESULT CpiGetSubscriptionsCollForComponent( | 164 | HRESULT CpiGetSubscriptionsCollForComponent( |
165 | CPI_ASSEMBLY* pAsm, | 165 | CPI_ASSEMBLY* pAsm, |
166 | CPI_COMPONENT* pComp, | 166 | CPISCHED_COMPONENT* pComp, |
167 | ICatalogCollection** ppiSubsColl | 167 | ICatalogCollection** ppiSubsColl |
168 | ); | 168 | ); |