[ros-diffs] [gedmurphy] 27755: add missing API's in order to link an updated rpcrt4

gedmurphy at svn.reactos.org gedmurphy at svn.reactos.org
Fri Jul 20 15:49:42 CEST 2007


Author: gedmurphy
Date: Fri Jul 20 17:49:41 2007
New Revision: 27755

URL: http://svn.reactos.org/svn/reactos?rev=27755&view=rev
Log:
add missing API's in order to link an updated rpcrt4

Modified:
    trunk/reactos/dll/win32/secur32/secur32.def
    trunk/reactos/dll/win32/secur32/sspi.c

Modified: trunk/reactos/dll/win32/secur32/secur32.def
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/secur32/secur32.def?rev=27755&r1=27754&r2=27755&view=diff
==============================================================================
--- trunk/reactos/dll/win32/secur32/secur32.def (original)
+++ trunk/reactos/dll/win32/secur32/secur32.def Fri Jul 20 17:49:41 2007
@@ -45,8 +45,8 @@
 LsaGetLogonSessionData at 8
 LsaRegisterPolicyChangeNotification at 8
 LsaUnregisterPolicyChangeNotification at 8
-;MakeSignature at 16
-;QueryContextAttributesA at 12
+MakeSignature at 16
+QueryContextAttributesA at 12
 QueryContextAttributesW at 12
 ;QueryCredentialsAttributesA at 12
 ;QueryCredentialsAttributesW at 12
@@ -76,4 +76,4 @@
 ;TranslateNameA at 20
 ;TranslateNameW at 20
 ;UnsealMessage
-;VerifySignature at 16
+VerifySignature at 16

Modified: trunk/reactos/dll/win32/secur32/sspi.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/secur32/sspi.c?rev=27755&r1=27754&r2=27755&view=diff
==============================================================================
--- trunk/reactos/dll/win32/secur32/sspi.c (original)
+++ trunk/reactos/dll/win32/secur32/sspi.c Fri Jul 20 17:49:41 2007
@@ -95,6 +95,16 @@
 WINAPI
 CompleteAuthToken(PCtxtHandle Handle,
                   PSecBufferDesc Buffer)
+{
+	DPRINT1("%s() not implemented!\n", __FUNCTION__);
+	return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+SECURITY_STATUS
+WINAPI
+QueryContextAttributesA(PCtxtHandle Handle,
+                        ULONG Foo,
+                        PVOID Bar)
 {
 	DPRINT1("%s() not implemented!\n", __FUNCTION__);
 	return ERROR_CALL_NOT_IMPLEMENTED;
@@ -167,3 +177,31 @@
 	DPRINT1("%s() not implemented!\n", __FUNCTION__);
 	return ERROR_CALL_NOT_IMPLEMENTED;
 }
+
+
+SECURITY_STATUS
+SEC_ENTRY
+MakeSignature(
+    PCtxtHandle phContext,
+    ULONG fQOP,
+    PSecBufferDesc pMessage,
+    ULONG MessageSeqNo
+    )
+{
+	DPRINT1("%s() not implemented!\n", __FUNCTION__);
+	return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+
+SECURITY_STATUS
+SEC_ENTRY
+VerifySignature(
+    PCtxtHandle phContext,
+    PSecBufferDesc pMessage,
+    ULONG MessageSeqNo,
+    PULONG pfQOP
+    )
+{
+	DPRINT1("%s() not implemented!\n", __FUNCTION__);
+	return ERROR_CALL_NOT_IMPLEMENTED;
+}




More information about the Ros-diffs mailing list