Skip to content

Commit f9ff464

Browse files
committed
Target 8086 instead of 80286, and use emulation if x87 isn't available.
Added "void" to methods which don't take parameters.
1 parent 287de6f commit f9ff464

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

MainWnd.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
LONG FAR PASCAL MainWndProc(HWND, unsigned, WORD, LONG);
66

77
/* Register a class for our main window */
8-
BOOL RegisterMainWindowClass();
8+
BOOL RegisterMainWindowClass(void);
99

1010
/* Create an instance of our main window */
11-
HWND CreateMainWindow();
11+
HWND CreateMainWindow(void);
1212

1313
/* Minimum and maximum window sizing */
1414
#ifndef WM_GETMINMAXINFO

Win1App

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Makefile will build the Win1 Example application
22

33
CC = cl
4-
CFLAGS = /c /D NDEBUG /G2swf /Os /W2 /Zp /FPi87
4+
CFLAGS = /c /D NDEBUG /AS /G0swf /Os /W2 /Zp /Fpi
55
LINK = link4
66
RC = rc
77
MAPSYM = mapsym

0 commit comments

Comments
 (0)