RosettaCodeData/Task/Hello-world-Graphical/C/hello-world-graphical-3.c
2023-07-01 13:44:08 -04:00

20 lines
388 B
C

#include <os2.h>
int main(void) {
HAB hab;
HMQ hmq;
hab = WinInitialize(0);
hmq = WinCreateMsgQueue(hab, 0);
WinMessageBox(HWND_DESKTOP,
HWND_DESKTOP,
"Hello, Presentation Manager!",
"My Program",
0L,
0L);
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
return 0;
}