home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / DIBIT / DIBIT.H_ / DIBIT.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  690 b   |  23 lines

  1. #include "resource.h"
  2.  
  3. /* flags for _lseek */
  4. #define  SEEK_CUR 1
  5. #define  SEEK_END 2
  6. #define  SEEK_SET 0
  7.  
  8. #define MAXREAD  32768               /* Number of bytes to be read during */
  9.                        /* each read operation.            */
  10. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  11. BOOL InitApplication(HANDLE);
  12. BOOL InitInstance(HANDLE, int);
  13. long FAR PASCAL __export MainWndProc(HWND, UINT, WPARAM, LPARAM);
  14. BOOL FAR PASCAL __export About(HWND, unsigned, WORD, LONG);
  15.  
  16. /* OpenFile functions */
  17. HANDLE FAR PASCAL OpenDlg(HWND, unsigned, WORD, LONG);
  18. void SeparateFile(HWND, LPSTR, LPSTR, LPSTR);
  19. void UpdateListBox(HWND);
  20. void AddExt(PSTR, PSTR);
  21. void ChangeDefExt(PSTR, PSTR);
  22. 
  23.