-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Missing CryptCATCDFEnumMembersByCDFTagEx and CryptCATCDFEnumAttribute…
…sWithCDFTag. Fixed #1950.
- Loading branch information
1 parent
ff991cf
commit df7c564
Showing
5 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include <mscat.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
LPWSTR WINAPI CryptCATCDFEnumMembersByCDFTagEx( | ||
_In_ CRYPTCATCDF *pCDF, | ||
_Inout_ LPWSTR pwszPrevCDFTag, | ||
_In_ PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError, | ||
_In_ CRYPTCATMEMBER **ppMember, | ||
_In_ BOOL fContinueOnError, | ||
_In_ LPVOID pvReserved | ||
); | ||
|
||
CRYPTCATATTRIBUTE* WINAPI CryptCATCDFEnumAttributesWithCDFTag( | ||
_In_ CRYPTCATCDF *pCDF, | ||
_In_ LPWSTR pwszMemberTag, | ||
_In_ CRYPTCATMEMBER *pMember, | ||
_In_ CRYPTCATATTRIBUTE *pPrevAttr, | ||
_In_ PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError | ||
); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include <mscat.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
LPWSTR WINAPI CryptCATCDFEnumMembersByCDFTagEx( | ||
_In_ CRYPTCATCDF *pCDF, | ||
_Inout_ LPWSTR pwszPrevCDFTag, | ||
_In_ PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError, | ||
_In_ CRYPTCATMEMBER **ppMember, | ||
_In_ BOOL fContinueOnError, | ||
_In_ LPVOID pvReserved | ||
); | ||
|
||
CRYPTCATATTRIBUTE* WINAPI CryptCATCDFEnumAttributesWithCDFTag( | ||
_In_ CRYPTCATCDF *pCDF, | ||
_In_ LPWSTR pwszMemberTag, | ||
_In_ CRYPTCATMEMBER *pMember, | ||
_In_ CRYPTCATATTRIBUTE *pPrevAttr, | ||
_In_ PFN_CDF_PARSE_ERROR_CALLBACK pfnParseError | ||
); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters