From cb57056f4bea90313fc74cd8aff017000e8256e8 Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Sat, 31 May 2008 12:49:25 +0000 Subject: [PATCH] Stub QuerySecurityPackageInfoA and QuerySecurityPackageInfoW, needed for the wininet Wine sync svn path=/trunk/; revision=33785 --- reactos/dll/win32/secur32/secur32.def | 4 ++-- reactos/dll/win32/secur32/sspi.c | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/secur32/secur32.def b/reactos/dll/win32/secur32/secur32.def index 57404e9e7f1..38ae5e343a5 100644 --- a/reactos/dll/win32/secur32/secur32.def +++ b/reactos/dll/win32/secur32/secur32.def @@ -51,8 +51,8 @@ QueryContextAttributesW@12 ;QueryCredentialsAttributesA@12 ;QueryCredentialsAttributesW@12 ;@QuerySecurityContextToken -;@QuerySecurityPackageInfoA -;@QuerySecurityPackageInfoW +QuerySecurityPackageInfoA@8 +QuerySecurityPackageInfoW@8 ;RevertSecurityContext@4 ;@SaslAcceptSecurityContext ;@SaslEnumerateProfilesA diff --git a/reactos/dll/win32/secur32/sspi.c b/reactos/dll/win32/secur32/sspi.c index 223f887700f..9ea94f66447 100644 --- a/reactos/dll/win32/secur32/sspi.c +++ b/reactos/dll/win32/secur32/sspi.c @@ -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; +}