Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include <windows.h>
  2.  
  3. int PASCAL WinMain( HANDLE currinst, HANDLE previnst, LPSTR cmdline, int cmdshow )
  4. {
  5.     currinst = currinst;
  6.     previnst = previnst;
  7.     cmdline = cmdline;
  8.     cmdshow = cmdshow;
  9.     MessageBox( NULL, "Hello World, FINALLY!", "Borland Example", MB_OK );
  10.     return( 0 );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement