Stub QuerySecurityPackageInfoA and QuerySecurityPackageInfoW, needed for the wininet...
authorColin Finck <colin@reactos.org>
Sat, 31 May 2008 12:49:25 +0000 (12:49 +0000)
committerColin Finck <colin@reactos.org>
Sat, 31 May 2008 12:49:25 +0000 (12:49 +0000)
svn path=/trunk/; revision=33785

reactos/dll/win32/secur32/secur32.def
reactos/dll/win32/secur32/sspi.c

index 57404e9..38ae5e3 100644 (file)
@@ -51,8 +51,8 @@ QueryContextAttributesW@12
 ;QueryCredentialsAttributesA@12
 ;QueryCredentialsAttributesW@12
 ;@QuerySecurityContextToken
 ;QueryCredentialsAttributesA@12
 ;QueryCredentialsAttributesW@12
 ;@QuerySecurityContextToken
-;@QuerySecurityPackageInfoA
-;@QuerySecurityPackageInfoW
+QuerySecurityPackageInfoA@8
+QuerySecurityPackageInfoW@8
 ;RevertSecurityContext@4
 ;@SaslAcceptSecurityContext
 ;@SaslEnumerateProfilesA
 ;RevertSecurityContext@4
 ;@SaslAcceptSecurityContext
 ;@SaslEnumerateProfilesA
index 223f887..9ea94f6 100644 (file)
@@ -225,3 +225,25 @@ VerifySignature(
        DPRINT1("%s() not implemented!\n", __FUNCTION__);
        return ERROR_CALL_NOT_IMPLEMENTED;
 }
        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;
+}