home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / adev11.lha / ADev11 / include / file_sys.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-14  |  138 b   |  8 lines

  1. enum _commands { _IO_NOP, _IO_GET, _IO_PUT };
  2.  
  3. struct _io_extension {
  4.   void (* _handler)();
  5.   enum _commands _command;
  6.   char *_data;
  7. };
  8.