#include <window.h>
Call MessageBox(...)
Just use "NULL" as its parent window. Other than that, it's a
straightforward call to MessageBox.
#include <windows.h>
int main() {
MessageBox(NULL, "The message", "The caption", MB_OK);
return 0;
}
P.S. remember to link with user32.lib...
--
Later,
Jerry.