mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Stub QuerySecurityPackageInfoA and QuerySecurityPackageInfoW, needed for the wininet Wine sync
svn path=/trunk/; revision=33785
This commit is contained in:
parent
33369deba9
commit
cb57056f4b
2 changed files with 24 additions and 2 deletions
|
@ -51,8 +51,8 @@ QueryContextAttributesW@12
|
||||||
;QueryCredentialsAttributesA@12
|
;QueryCredentialsAttributesA@12
|
||||||
;QueryCredentialsAttributesW@12
|
;QueryCredentialsAttributesW@12
|
||||||
;@QuerySecurityContextToken
|
;@QuerySecurityContextToken
|
||||||
;@QuerySecurityPackageInfoA
|
QuerySecurityPackageInfoA@8
|
||||||
;@QuerySecurityPackageInfoW
|
QuerySecurityPackageInfoW@8
|
||||||
;RevertSecurityContext@4
|
;RevertSecurityContext@4
|
||||||
;@SaslAcceptSecurityContext
|
;@SaslAcceptSecurityContext
|
||||||
;@SaslEnumerateProfilesA
|
;@SaslEnumerateProfilesA
|
||||||
|
|
|
@ -225,3 +225,25 @@ VerifySignature(
|
||||||
DPRINT1("%s() not implemented!\n", __FUNCTION__);
|
DPRINT1("%s() not implemented!\n", __FUNCTION__);
|
||||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue