home *** CD-ROM | disk | FTP | other *** search
- /* file menu items */
-
- #define IDM_NEW 100
- #define IDM_OPEN 101
- #define IDM_SAVE 102
- #define IDM_SAVEAS 103
- #define IDM_PRINT 104
- #define IDM_EXIT 105
- #define IDM_ABOUT 106
-
- /* edit menu items */
-
- #define IDM_UNDO 200
- #define IDM_CUT 201
- #define IDM_COPY 202
- #define IDM_PASTE 203
- #define IDM_CLEAR 204
-
- /* Control IDs */
-
- #define IDC_FILENAME 400
- #define IDC_EDIT 401
- #define IDC_FILES 402
- #define IDC_PATH 403
- #define IDC_LISTBOX 404
-
- int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
- BOOL InitApplication(HANDLE);
- BOOL InitInstance(HANDLE, int);
- long FAR PASCAL MainWndProc(HWND, unsigned, WORD, LONG);
- BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
- HANDLE FAR PASCAL OpenDlg(HWND, unsigned, WORD, LONG);
- void SeparateFile(HWND, LPSTR, LPSTR, LPSTR);
- void UpdateListBox(HWND);
- void AddExt(PSTR, PSTR);
- void ChangeDefExt(PSTR, PSTR);
-