home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / DriverKit / AMDPCSCSIDriver / SCSIInspector.h < prev    next >
Text File  |  1996-04-03  |  459b  |  22 lines

  1. #import <appkit/appkit.h>
  2. #import <driverkit/IODeviceMaster.h>
  3. #import <driverkit/IODeviceInspector.h>
  4.  
  5. @interface AMDInspector:IODeviceInspector
  6. {
  7.     id    optionsBox;    // the one with the title
  8.     id    boundingBox;    // the one we put in the accessory view
  9.     id    syncButton;
  10.     id    fastButton;
  11.     id    cmdQueueButton;
  12. }
  13.  
  14. - init;
  15. - (void)_initButton : button   key : (const char *)key;
  16. - setTable:(NXStringTable *)instance;
  17. - sync:sender;
  18. - fast:sender;
  19. - cmdQueue:sender;
  20.  
  21. @end
  22.