Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygeninbvtypes.h
Go to the documentation of this file.
00001 /*++ NDK Version: 0098 00002 00003 Copyright (c) Alex Ionescu. All rights reserved. 00004 00005 Header Name: 00006 00007 inbvtypes.h 00008 00009 Abstract: 00010 00011 Type definitions for the Boot Video Driver. 00012 00013 Author: 00014 00015 Alex Ionescu (alexi@tinykrnl.org) - Created - 02-Feb-2007 00016 00017 --*/ 00018 00019 #ifndef _INBVTYPES_H 00020 #define _INBVTYPES_H 00021 00022 // 00023 // Dependencies 00024 // 00025 #include <umtypes.h> 00026 #ifndef NTOS_MODE_USER 00027 00028 // 00029 // Boot Video Display Ownership Status 00030 // 00031 typedef enum _INBV_DISPLAY_STATE 00032 { 00033 INBV_DISPLAY_STATE_OWNED, 00034 INBV_DISPLAY_STATE_DISABLED, 00035 INBV_DISPLAY_STATE_LOST 00036 } INBV_DISPLAY_STATE; 00037 00038 // 00039 // Function Callbacks 00040 // 00041 typedef 00042 BOOLEAN 00043 (NTAPI *INBV_RESET_DISPLAY_PARAMETERS)( 00044 ULONG Cols, 00045 ULONG Rows 00046 ); 00047 00048 typedef 00049 VOID 00050 (NTAPI *INBV_DISPLAY_STRING_FILTER)( 00051 PCHAR *Str 00052 ); 00053 00054 #endif 00055 #endif Generated on Sat May 26 2012 04:29:30 for ReactOS by
1.7.6.1
|