mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:15:52 +00:00
[SCHANNEL_WINETEST] Sync with Wine Staging 1.9.11. CORE-11368
svn path=/trunk/; revision=71782
This commit is contained in:
parent
6b4d3c57da
commit
6e323c1869
1 changed files with 5 additions and 1 deletions
|
@ -43,7 +43,9 @@
|
|||
QueryMetaData)
|
||||
#define SECPKG_FUNCTION_TABLE_SIZE_5 FIELD_OFFSET(SECPKG_FUNCTION_TABLE, \
|
||||
ValidateTargetInfo)
|
||||
#define SECPKG_FUNCTION_TABLE_SIZE_6 sizeof(SECPKG_FUNCTION_TABLE)
|
||||
#define SECPKG_FUNCTION_TABLE_SIZE_6 FIELD_OFFSET(SECPKG_FUNCTION_TABLE, \
|
||||
PostLogonUser)
|
||||
#define SECPKG_FUNCTION_TABLE_SIZE_7 sizeof(SECPKG_FUNCTION_TABLE)
|
||||
|
||||
#define LSA_BASE_CAPS ( \
|
||||
SECPKG_FLAG_INTEGRITY | \
|
||||
|
@ -152,6 +154,8 @@ static PSECPKG_FUNCTION_TABLE getNextSecPkgTable(PSECPKG_FUNCTION_TABLE pTable,
|
|||
size = SECPKG_FUNCTION_TABLE_SIZE_5;
|
||||
else if (Version == SECPKG_INTERFACE_VERSION_6)
|
||||
size = SECPKG_FUNCTION_TABLE_SIZE_6;
|
||||
else if (Version == SECPKG_INTERFACE_VERSION_7)
|
||||
size = SECPKG_FUNCTION_TABLE_SIZE_7;
|
||||
else {
|
||||
ok(FALSE, "Unknown package version 0x%x\n", Version);
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue