home *** CD-ROM | disk | FTP | other *** search
- #include "resource.h"
-
- /* flags for _lseek */
- #define SEEK_CUR 1
- #define SEEK_END 2
- #define SEEK_SET 0
-
- #define MAXREAD 32768 /* Number of bytes to be read during */
- /* each read operation. */
- int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
- BOOL InitApplication(HANDLE);
- BOOL InitInstance(HANDLE, int);
- long FAR PASCAL __export MainWndProc(HWND, UINT, WPARAM, LPARAM);
- BOOL FAR PASCAL __export About(HWND, unsigned, WORD, LONG);
-
- /* OpenFile functions */
- 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);
-