mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-14 07:45:31 +00:00
21 lines
377 B
C
21 lines
377 B
C
#include <windows.h>
|
|
#include <Lmcons.h>
|
|
#include <wchar.h>
|
|
|
|
int wmain(void) {
|
|
|
|
wchar_t username[UNLEN+1];
|
|
DWORD len = sizeof(username) / sizeof(wchar_t);
|
|
|
|
int r = GetUserNameW(username, &len);
|
|
|
|
if (r == 0) {
|
|
wprintf(L"Failed to get username %ld", GetLastError());
|
|
return 1;
|
|
}
|
|
|
|
wprintf(L"User name: %ls\n", username);
|
|
|
|
return 0;
|
|
}
|