[ros-diffs] [cwittich] 20752: added some stubs (Photoshop CS seems to work now)

cwittich at svn.reactos.org cwittich at svn.reactos.org
Mon Jan 9 16:09:01 CET 2006


added some stubs (Photoshop CS seems to work now)
Modified: trunk/reactos/lib/secur32/secur32.def
Modified: trunk/reactos/lib/secur32/sspi.c
  _____  

Modified: trunk/reactos/lib/secur32/secur32.def
--- trunk/reactos/lib/secur32/secur32.def	2006-01-09 13:51:37 UTC
(rev 20751)
+++ trunk/reactos/lib/secur32/secur32.def	2006-01-09 15:08:35 UTC
(rev 20752)
@@ -8,7 +8,7 @@

 LsaFreeReturnBuffer at 4
 LsaCallAuthenticationPackage at 28
 ;AcceptSecurityContext at 36
-;AcquireCredentialsHandleA at 36
+AcquireCredentialsHandleA at 36
 ;AcquireCredentialsHandleW at 36
 ;@AddCredentialsA
 ;@AddCredentialsW
@@ -39,7 +39,7 @@
 ;@ImportSecurityContextW
 ;@InitSecurityInterfaceA
 ;@InitSecurityInterfaceW
-;InitializeSecurityContextA at 48
+InitializeSecurityContextA at 48
 ;InitializeSecurityContextW at 48
 LsaEnumerateLogonSessions at 8
 LsaGetLogonSessionData at 8
  _____  

Modified: trunk/reactos/lib/secur32/sspi.c
--- trunk/reactos/lib/secur32/sspi.c	2006-01-09 13:51:37 UTC (rev
20751)
+++ trunk/reactos/lib/secur32/sspi.c	2006-01-09 15:08:35 UTC (rev
20752)
@@ -35,3 +35,42 @@

 	DPRINT1("%s() not implemented!\n", __FUNCTION__);
 	return ERROR_CALL_NOT_IMPLEMENTED;
 }
+
+SECURITY_STATUS
+WINAPI
+AcquireCredentialsHandleA ( 
+    SEC_CHAR* pszPrincipal,
+    SEC_CHAR* pszPackage,
+    ULONG fUsage,
+    PLUID pID,
+    PVOID pAuth,
+    SEC_GET_KEY_FN pGetKeyFn,
+    PVOID pvGetKeyArgument,
+    PCredHandle phCred,
+    PTimeStamp pExpires
+    )
+{
+	DPRINT1("%s() not implemented!\n", __FUNCTION__);
+	return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+SECURITY_STATUS
+WINAPI
+InitializeSecurityContextA ( 
+    PCredHandle phCred,
+    PCtxtHandle phContext,
+    SEC_CHAR* pszTarget,
+    ULONG fContextReq,
+    ULONG Reserved,
+    ULONG TargetData,
+    PSecBufferDesc pInput,
+    ULONG Reserved2,
+    PCtxtHandle phNewContext,
+    PSecBufferDesc pOut,
+    PULONG pfContextAttributes,
+    PTimeStamp pExpires
+    )
+{
+	DPRINT1("%s() not implemented!\n", __FUNCTION__);
+	return ERROR_CALL_NOT_IMPLEMENTED;
+}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20060109/853a41bb/attachment.html


More information about the Ros-diffs mailing list