home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / DriverKit / AMDPCSCSIDriver / SCSIInspector.h < prev    next >
Encoding:
Text File  |  1995-02-10  |  459 b   |  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.