SECUR32: add stub implementation for GetComputerObjectName

Mike McCormack mike at codeweavers.com
Sun Jul 11 15:46:39 CDT 2004


This is a stub implementation for GetComputerObjectName.  Hopefully it 
gets Saulius a little bit further through his install.

This patch depends upon the header patch I just posted.

Mike


ChangeLog:
* add stub implementation for GetComputerObjectName

-------------- next part --------------
Index: dlls/secur32/secur32.c
===================================================================
RCS file: /home/wine/wine/dlls/secur32/secur32.c,v
retrieving revision 1.3
diff -u -r1.3 secur32.c
--- dlls/secur32/secur32.c	17 May 2004 21:08:31 -0000	1.3
+++ dlls/secur32/secur32.c	11 Jul 2004 20:41:23 -0000
@@ -25,6 +25,7 @@
 #include "shlwapi.h"
 #include "sspi.h"
 #include "secur32_priv.h"
+#include "secext.h"
 #include "thunks.h"
 
 #include "wine/debug.h"
@@ -878,6 +879,26 @@
         FreeContextBuffer(info);
     }
     return ret;
+}
+
+/***********************************************************************
+ *		GetComputerObjectNameA (SECUR32.@)
+ */
+BOOLEAN WINAPI GetComputerObjectNameA(
+  EXTENDED_NAME_FORMAT NameFormat, LPSTR lpNameBuffer, PULONG nSize)
+{
+    FIXME("%d %p %p\n", NameFormat, lpNameBuffer, nSize);
+    return FALSE;
+}
+
+/***********************************************************************
+ *		GetComputerObjectNameW (SECUR32.@)
+ */
+BOOLEAN WINAPI GetComputerObjectNameW(
+  EXTENDED_NAME_FORMAT NameFormat, LPWSTR lpNameBuffer, PULONG nSize)
+{
+    FIXME("%d %p %p\n", NameFormat, lpNameBuffer, nSize);
+    return FALSE;
 }
 
 /***********************************************************************


More information about the wine-patches mailing list