home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / goattracker_2.65.zip / src / bme / bme_io.h < prev    next >
Text File  |  2002-08-20  |  459b  |  15 lines

  1. // BME IO module header file
  2.  
  3. int io_open(char *name);
  4. int io_lseek(int handle, int bytes, int whence);
  5. int io_read(int handle, void *buffer, int size);
  6. void io_close(int handle);
  7. int io_opendatafile(char *name);
  8. int io_openlinkeddatafile(unsigned char *ptr);
  9. void io_setfilemode(int usedf);
  10. unsigned io_read8(int handle);
  11. unsigned io_readle16(int handle);
  12. unsigned io_readle32(int handle);
  13. unsigned io_readhe16(int handle);
  14. unsigned io_readhe32(int handle);
  15.