home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mnth0107.zip / Anderson / source / efile.h < prev    next >
Text File  |  1992-01-25  |  345b  |  13 lines

  1. /* file I/O for OS/2 Programmer's Editor */
  2.  
  3. /* return types for local file I/O functions */
  4. #define CANTREAD (-1L)
  5. #define CANTWRITE (-2L)
  6. #define TOOLONG (-3L)
  7. #define NOMEMORY (-4L)
  8.  
  9. LONG ReadFile (char *fn, PCHAR *b);
  10. LONG MakeWriteBuffer (LONG cb, PCHAR *b);
  11. LONG WriteFile (char *fn, LONG cb, PCHAR b);
  12. VOID Release (PCHAR b);
  13.