ChangeSet ID: 12867 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2004/07/12 14:52:47 Modified files: dlls/secur32 : secur32.spec secur32.c Log message: Mike McCormack Add stub implementation for GetComputerObjectName. Patch: http://cvs.winehq.org/patch.py?id=12867 Old revision New revision Changes Path 1.1 1.2 +2 -2 wine/dlls/secur32/secur32.spec 1.3 1.4 +21 -0 wine/dlls/secur32/secur32.c Index: wine/dlls/secur32/secur32.spec diff -u -p wine/dlls/secur32/secur32.spec:1.1 wine/dlls/secur32/secur32.spec:1.2 --- wine/dlls/secur32/secur32.spec:1.1 Sun May 19 01:53:41 2013 +++ wine/dlls/secur32/secur32.spec Sun May 19 01:53:41 2013 @@ -20,8 +20,8 @@ @ stdcall ExportSecurityContext(ptr long ptr ptr) @ stdcall FreeContextBuffer(ptr) @ stdcall FreeCredentialsHandle(ptr) -@ stub GetComputerObjectNameA -@ stub GetComputerObjectNameW +@ stdcall GetComputerObjectNameA(long ptr ptr) +@ stdcall GetComputerObjectNameW(long ptr ptr) @ stub GetSecurityUserInfo @ stub GetUserNameExA @ stub GetUserNameExW Index: wine/dlls/secur32/secur32.c diff -u -p wine/dlls/secur32/secur32.c:1.3 wine/dlls/secur32/secur32.c:1.4 --- wine/dlls/secur32/secur32.c:1.3 Sun May 19 01:53:41 2013 +++ wine/dlls/secur32/secur32.c Sun May 19 01:53:41 2013 @@ -25,6 +25,7 @@ #include "shlwapi.h" #include "sspi.h" #include "secur32_priv.h" +#include "secext.h" #include "thunks.h" #include "wine/debug.h" @@ -881,6 +882,26 @@ SECURITY_STATUS WINAPI EnumerateSecurity } /*********************************************************************** + * 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; +} + +/*********************************************************************** * DllMain (SECUR32.0) */ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)