Stub QuerySecurityPackageInfoA and QuerySecurityPackageInfoW, needed for the wininet Wine sync

svn path=/trunk/; revision=33785
This commit is contained in:
Colin Finck 2008-05-31 12:49:25 +00:00
parent 33369deba9
commit cb57056f4b
2 changed files with 24 additions and 2 deletions

View file

@ -51,8 +51,8 @@ QueryContextAttributesW@12
;QueryCredentialsAttributesA@12
;QueryCredentialsAttributesW@12
;@QuerySecurityContextToken
;@QuerySecurityPackageInfoA
;@QuerySecurityPackageInfoW
QuerySecurityPackageInfoA@8
QuerySecurityPackageInfoW@8
;RevertSecurityContext@4
;@SaslAcceptSecurityContext
;@SaslEnumerateProfilesA

View file

@ -225,3 +225,25 @@ VerifySignature(
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
SEC_ENTRY
QuerySecurityPackageInfoA(
SEC_CHAR* pszPackageName,
PSecPkgInfoA* ppPackageInfo
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
SEC_ENTRY
QuerySecurityPackageInfoW(
SEC_WCHAR* pszPackageName,
PSecPkgInfoW* ppPackageInfo
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}