home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextLibrary / Documentation / NextDev / Examples / DriverKit / TestDriver / myTestDriver / myTestDriver_reloc.tproj / myTestDriver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-01  |  618 b   |  25 lines

  1. /*     Copyright (c) 1993 NeXT Computer, Inc.  All rights reserved. 
  2.  *
  3.  * Example of a loadable i386 driver. This driver doesn't do anything
  4.  * other than show that it has been loaded, probed, and has a valid
  5.  * IOEISADeviceDescription.
  6.  *
  7.  * HISTORY
  8.  * 04-Feb-93    Doug Mitchell at NeXT
  9.  *      Created. 
  10.  * 29-Mar-93    Kathy Walrath at NeXT
  11.  *      Modified for use as an example of building, loading, & debugging. 
  12.  */
  13.  
  14. #import <driverkit/i386/directDevice.h>
  15.  
  16. @interface myTestDriver : IODirectDevice
  17. {
  18. char *_myParameter;
  19. }
  20.  
  21. + (BOOL)probe: deviceDescription;
  22. - initFromDeviceDescription: deviceDescription;
  23.  
  24. @end
  25.