http://bugs.winehq.org/show_bug.cgi?id=12426 --- Comment #7 from Janne <janne.kekkonen@gmail.com> --- Hello, I tested compiling this with Open Watcom 2. The Makefile is missing a space before the -zW flag on line 21: https://github.com/austin987/win16test/blob/master/src/Makefile#L21 At least on Open Watcom 2, this causes compilation errors. Additionally, there are two ways to fix the E1010 errors: First fix: Add explicit type casts to the lines that trigger E1010 (as noted in comment #4). There is also one in window.c at line 88. For example, line 83 in alloc.c after type casting: ok(mem2a != (HGLOBAL)NULL, "GlobalReAlloc failed\n"); Second fix: Add -DNULL=0 to the CFLAGS definition in the Makefile: CFLAGS = -D_X86_ -DSTANDALONE -DNULL=0 "-i=C:\WATCOM\h\win;C:\WATCOM\h" -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.