pty_handle is a HANDLE, not an int.
[wine] / programs / winver / winver.c
1 /*
2  * Windows Version Program
3  *
4  * Copyright 1997 by Marcel Baur (mbaur@g26.ethz.ch)
5  *
6 */
7
8 #include "windows.h"
9 #include "version.h"
10
11 int PASCAL WinMain (HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
12 {
13    return ShellAbout((HWND)0, "WINE", WINE_RELEASE_INFO, 0);
14 }
15
16 /* Local Variables:     */
17 /* c-files style: "GNU" */
18 /* End:                 */