home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / Misc / GMS / GMSDev / Includes / clib / files_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-16  |  550 b   |  25 lines

  1. #ifndef  CLIB_FILES_PROTOS_H
  2. #define  CLIB_FILES_PROTOS_H
  3.  
  4. /*
  5. **   $VER: files_protos.h V0.9B
  6. **
  7. **   C prototypes.
  8. **
  9. **   (C) Copyright 1996-1997 DreamWorld Productions.
  10. **       All Rights Reserved.
  11. */
  12.  
  13. #ifndef  DPKERNEL_H
  14. #include <games/dpkernel.h>
  15. #endif
  16.  
  17. LONG ReadFile(struct File *, APTR Buffer, LONG Length);
  18. LONG WriteComment(APTR Object, BYTE *Comment);
  19. LONG WriteDate(APTR Object, struct Time *);
  20. LONG WriteFile(struct File *, APTR Buffer, LONG Length);
  21. struct File * OpenFile(APTR Source, LONG Flags);
  22.  
  23. #endif /* CLIB_FILES_PROTOS_H */
  24.  
  25.