Add stub implementation for GetComputerObjectName.
This commit is contained in:
parent
4a96a64ef1
commit
e18965dfc8
|
@ -25,6 +25,7 @@
|
|||
#include "shlwapi.h"
|
||||
#include "sspi.h"
|
||||
#include "secur32_priv.h"
|
||||
#include "secext.h"
|
||||
#include "thunks.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
@ -880,6 +881,26 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesA(PULONG pcPackages,
|
|||
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;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DllMain (SECUR32.0)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue