home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Examples / DriverKit / JAWS / JAWS_reloc.tproj / JAWS.h next >
Encoding:
C/C++ Source or Header  |  1993-07-30  |  700 b   |  34 lines

  1. /* Copyright (c) 1992, 1993 NeXT Computer, Inc.  All rights reserved. 
  2.  *
  3.  * JAWS.h - Definition of the Jaws display driver class.
  4.  *
  5.  *
  6.  * HISTORY
  7.  * 01 Sep 92    Joe Pasqua
  8.  *      Created. 
  9.  * 12 July 1993    Derek B Clegg
  10.  *     Cleanup for external release.
  11.  */
  12.  
  13. #ifndef JAWS_H__
  14. #define JAWS_H__
  15.  
  16. /* This interface is for the Jaws display driver. */
  17.  
  18. #import <driverkit/IOFrameBufferDisplay.h>
  19.  
  20. @interface JAWS:IOFrameBufferDisplay
  21. {
  22. @private
  23.     BOOL useCompositeSync;
  24.     vm_offset_t baseAddress;
  25.     unsigned int _JAWS_reserved[8];
  26. }
  27. - (void)revertToVGAMode;
  28. - (void)enterLinearMode;
  29. - initFromDeviceDescription:deviceDescription;
  30. - setBrightness:(int)level token:(int)t;
  31. @end
  32.  
  33. #endif    /* JAWS_H__ */
  34.