GetComputerObjectNameA(3w)
NAME
GetComputerObjectNameA (SECUR32.@)
SYNOPSIS
BOOLEAN GetComputerObjectNameA ( EXTENDED_NAME_FORMAT NameFormat, LPSTR lpNameBuffer, PULONG nSize )
DESCRIPTION
Get the local computer's name using the format specified.
PARAMS
NameFormat [In] The format for the name.
lpNameBuffer [Out] Pointer to buffer to receive the name.
nSize [In/Out] Size in characters of buffer.
RETURNS
TRUE If the name was written to lpNameBuffer. FALSE If the name
couldn't be written.
NOTES
If lpNameBuffer is NULL, then the size of the buffer needed to hold the
name will be returned in *nSize.
nSize returns the number of characters written when lpNameBuffer is not
NULL or the size of the buffer needed to hold the name when the buffer
is too short or lpNameBuffer is NULL.
It the buffer is too short, ERROR_INSUFFICIENT_BUFFER error will be
set.
IMPLEMENTATION
Defined in "secext.h".
- Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/secur32/secur32.c".