home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / adev1120.lha / include / file_sys.h < prev    next >
C/C++ Source or Header  |  1992-11-13  |  138b  |  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.