home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Graphics / graphics-16000.iso / amiga / fractal / mandlsqr / source / playanim / gio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-05  |  495 b   |  15 lines

  1. #ifndef GIO_H
  2. #define GIO_H
  3. #ifndef LIBRARIES_DOS_H
  4. #include "libraries/dos.h"
  5. #endif
  6. #define GOpen(filename,openmode) Open(filename,openmode)
  7. #define GClose(file) Close(file)
  8. #define GRead(file,buffer,nBytes) Read(file,buffer,nBytes)
  9. #define GWriteFlush(file) (0)
  10. #define GWriteDeclare(file,buffer,nBytes) (0)
  11. #define GWrite(file,buffer,nBytes) Write(file,buffer,nBytes)
  12. #define GSeek(file,position,mode) Seek(file,position,mode)
  13. #define GWriteUndeclare(file) GWriteDeclare(file,NULL,0)
  14. #endif
  15.