Last active
January 23, 2018 03:19
-
-
Save fortheday/7ebfed2533d6c207a2159a87f1ee87c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
char buf[1024]; | |
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, GetLastError(), 0, buf, 1024, NULL); | |
MessageBox(NULL, buf, NULL, MB_OK); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment