home *** CD-ROM | disk | FTP | other *** search
- /*
- * Header file for the small memory model template
- *
- * Written by Bill Hall
- * 3665 Benton Street, #66
- * Santa Clara, CA 95051
- *
- */
-
- /* This trick insures that globals are declared in only one place */
- #if !defined(EXTERN)
- #define EXTERN extern
- #endif
-
- /* Resource string constants */
- #define IDS_APPNAME 100
- #define IDS_ICON 101
- #define IDS_TITLE 102
-
- /* Global variables */
- EXTERN HWND hWndMain; /* main window handle */
- EXTERN char szAppName[10]; /* name of the application */
- EXTERN char szIcon[5]; /* icon string */
-
- /* Declarations which need to be known in all C source files */
- LONG FAR PASCAL MainWndProc(HWND,unsigned,WORD,LONG);
- BOOL FAR InitProgram(HANDLE, HANDLE, LPSTR, int);