Scroll to navigation

GetUserNameA(3w) Wine API GetUserNameA(3w)

NAME

GetUserNameA (ADVAPI32.@)

SYNOPSIS

BOOL GetUserNameA
(
LPSTR lpszName,
LPDWORD lpSize
)
 

DESCRIPTION

Get the current user name.
 

PARAMS

lpszName [Out] Destination for the user name.
lpSize [In/Out] Size of lpszName.
 

RETURNS

Success: The length of the user name, including terminating NUL.
Failure: ERROR_MORE_DATA if *lpSize is too small.
 

IMPLEMENTATION

Declared in "winbase.h".
Implemented in "dlls/advapi32/advapi.c".
Debug channel "advapi".
Oct 2012 Wine API