home *** CD-ROM | disk | FTP | other *** search
- #include "windows.h"
-
- #define CDECL cdecl
-
- #ifdef RC_INVOKED
- #define ID(id) id
- #else
- #define ID(id) MAKEINTRESOURCE(id)
- #endif
-
- #define DSIMPORT ID(1)
-
- #define IDD_ABOUT ID(300)
-
- #define DSIMENU ID(400)
-
- #define IDS_APPNAME 1000
- #define IDS_UNTITLED 1001
- #define IDS_TITLE 1002
-
- #define IDM_FILEEXIT 2000
- #define IDM_HELPABOUT 2001
-
- extern HANDLE hInst;
- extern HWND hwndImportWnd;
-
- BOOL FAR PASCAL InitializeApplication(HANDLE);
- BOOL FAR PASCAL InitializeInstance(LPSTR, int);
- BOOL FAR PASCAL AboutDlgProc(HWND, WORD, WORD, LONG);
- LONG FAR PASCAL ImportWndProc(HWND, WORD, WORD, LONG);
- int FAR PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
-