Skip to content

Instantly share code, notes, and snippets.

@JJK96
Created October 27, 2023 11:20
Show Gist options
  • Save JJK96/173b5fea4bfa2dc0f792373549449365 to your computer and use it in GitHub Desktop.
Save JJK96/173b5fea4bfa2dc0f792373549449365 to your computer and use it in GitHub Desktop.
Windows application that sends a popup
#include <windows.h>
#pragma comment(lib,"User32")
void main() {
MessageBox(NULL, "Message", "Caption", MB_OK);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment