This function retrieves the user name used to establish a network connection.
At a Glance
Header file: | Winnetwk.h |
Windows CE versions: | 2.0 and later |
Syntax
DWORD WNetGetUser( LPCTSTR lpName, LPTSTR lpUserName, LPDWORD lpnLength);
Parameters
lpName
[in] Long pointer to a null-terminated string that specifies either a local name that has been redirected to a network resource, or the remote name of a network resource to which a connection has been made without necessarily creating a local name.
lpUserName
[out] Long pointer to a buffer that receives the null-terminated user name.
lpnLength
[in/out] Long pointer to a variable that specifies the size, in characters, of the buffer pointed to by lpUserName. If the call fails because the buffer is not big enough, this variable contains the required buffer size.
Return Values
ERROR_SUCCESS indicates success. An error value indicates failure. To get extended error information, call GetLastError. Possible GetLastError error values are described in the following table.
Value | Description |
ERROR_NOT_CONNECTED | The resource name specified by lpName is not a connected network resource. |
ERROR_MORE_DATA | The supplied buffer is not large enough to hold the user name. |
ERROR_NO_NETWORK | No network is present. |
The function returns error values for compatibility with Windows-based desktop platforms. For compatibility with the Win32 API, the function also sets the error value returned by GetLastError.