wintrust: Add missing packing directives to mscat.h.
[wine] / include / mscat.h
1 /*
2  * Copyright (C) 2004 Francois Gouget
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef __WINE_MSCAT_H
20 #define __WINE_MSCAT_H
21
22 #include <mssip.h>
23
24 typedef HANDLE HCATADMIN;
25 typedef HANDLE HCATINFO;
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31
32 #include <pshpack8.h>
33
34 typedef struct CRYPTCATMEMBER_ {
35     DWORD cbStruct;
36     LPWSTR pwszReferenceTag;
37     LPWSTR pwszFileName;
38     GUID gSubjectType;
39     DWORD fdwMemberFlags;
40     struct SIP_INDIRECT_DATA_* pIndirectData;
41     DWORD dwCertVersion;
42     DWORD dwReserved;
43     HANDLE hReserved;
44     CRYPT_ATTR_BLOB sEncodedIndirectData;
45     CRYPT_ATTR_BLOB sEncodedMemberInfo;
46 } CRYPTCATMEMBER;
47
48 #include <poppack.h>
49
50
51 BOOL      WINAPI CryptCATAdminAcquireContext(HCATADMIN*,const GUID*,DWORD);
52 BOOL      WINAPI CryptCATAdminCalcHashFromFileHandle(HANDLE,DWORD*,BYTE*,DWORD);
53 HCATINFO  WINAPI CryptCATAdminEnumCatalogFromHash(HCATADMIN,BYTE*,DWORD,DWORD,HCATINFO*);
54 BOOL      WINAPI CryptCATAdminReleaseContext(HCATADMIN,DWORD);
55 BOOL      WINAPI CryptCATClose(HANDLE);
56 CRYPTCATMEMBER* WINAPI CryptCATEnumerateMember(HANDLE,CRYPTCATMEMBER*);
57 HANDLE    WINAPI CryptCATOpen(LPWSTR,DWORD,HCRYPTPROV,DWORD,DWORD);
58
59 #ifdef __cplusplus
60 }
61 #endif
62
63 #endif