home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Headers / bsd / dev / hppa / BasicConsole.h next >
Encoding:
C/C++ Source or Header  |  1995-02-15  |  786 b   |  27 lines

  1. /*     Copyright (c) 1992 NeXT Computer, Inc.  All rights reserved. 
  2.  *
  3.  * BasicConsole.c - VGA based console definitions.
  4.  *
  5.  *
  6.  * HISTORY
  7.  * 15 Sep 92    Joe Pasqua
  8.  *      Created. 
  9.  */
  10.  
  11. #if defined(KERNEL_PRIVATE) || defined(DRIVER_PRIVATE)
  12.  
  13. // Notes:
  14. // * This module is the interface to a console implementation that writes
  15. //   to a [CEV]GA in character mode. See ConsoleSupport.h for details.
  16. // * The km driver should be the only client of this interface. It will
  17. //   allocate a VGAConsole object initially using this mechanism. It will
  18. //   get console objects for the rest of the displays using a method
  19. //   in the display's class.
  20.  
  21. #import    <mach/boolean.h>
  22. #import    "ConsoleSupport.h"
  23.  
  24. extern IOConsoleInfo *BasicAllocateConsole();
  25.  
  26. #endif    /* KERNEL_PRIVATE || DRIVER_PRIVATE */
  27.