Last active
December 14, 2017 21:01
-
-
Save sl4v/3abcb19b6b6db2fbe7ff542067099d62 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
HMODULE user32 = LoadLibrary("user32.dll"); | |
MsgBox = GetProcAddress(user32, "MessageBoxA"); | |
MsgBox(NULL, "Text", "Caption", 0, 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment