mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
9 lines
238 B
C
9 lines
238 B
C
#include "windows.h"
|
|
|
|
int PASCAL WinMain (HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
|
|
{
|
|
return MessageBox((HWND)0,
|
|
(LPSTR)"Hello, hello!",
|
|
(LPSTR)"Hello Wine Application",
|
|
(MB_OK | MB_ICONEXCLAMATION));
|
|
}
|