Add stub implementation for GetComputerObjectName.
This commit is contained in:
parent
4a96a64ef1
commit
e18965dfc8
@ -25,6 +25,7 @@
|
|||||||
#include "shlwapi.h"
|
#include "shlwapi.h"
|
||||||
#include "sspi.h"
|
#include "sspi.h"
|
||||||
#include "secur32_priv.h"
|
#include "secur32_priv.h"
|
||||||
|
#include "secext.h"
|
||||||
#include "thunks.h"
|
#include "thunks.h"
|
||||||
|
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
@ -880,6 +881,26 @@ SECURITY_STATUS WINAPI EnumerateSecurityPackagesA(PULONG pcPackages,
|
|||||||
return ret;
|
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)
|
* DllMain (SECUR32.0)
|
||||||
*/
|
*/
|
||||||
|
@ -20,8 +20,8 @@
|
|||||||
@ stdcall ExportSecurityContext(ptr long ptr ptr)
|
@ stdcall ExportSecurityContext(ptr long ptr ptr)
|
||||||
@ stdcall FreeContextBuffer(ptr)
|
@ stdcall FreeContextBuffer(ptr)
|
||||||
@ stdcall FreeCredentialsHandle(ptr)
|
@ stdcall FreeCredentialsHandle(ptr)
|
||||||
@ stub GetComputerObjectNameA
|
@ stdcall GetComputerObjectNameA(long ptr ptr)
|
||||||
@ stub GetComputerObjectNameW
|
@ stdcall GetComputerObjectNameW(long ptr ptr)
|
||||||
@ stub GetSecurityUserInfo
|
@ stub GetSecurityUserInfo
|
||||||
@ stub GetUserNameExA
|
@ stub GetUserNameExA
|
||||||
@ stub GetUserNameExW
|
@ stub GetUserNameExW
|
||||||
|
Loading…
x
Reference in New Issue
Block a user