Skip to content

Instantly share code, notes, and snippets.

@davidglezz
Created November 4, 2013 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidglezz/7308832 to your computer and use it in GitHub Desktop.
Save davidglezz/7308832 to your computer and use it in GitHub Desktop.
GetUserName Example
#include <windows.h>
#include <stdio.h>
int main()
{
char buffer[256] = "";
DWORD size = sizeof(buffer);
if (GetUserName(buffer, &size))
{
printf("UserName: %s\n", buffer);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment