Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygendisplay.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS HAL 00003 * LICENSE: BSD - See COPYING.ARM in the top level directory 00004 * FILE: hal/halarm/generic/display.c 00005 * PURPOSE: Screen Display Routines, now useless since NT 5.1+ 00006 * PROGRAMMERS: ReactOS Portable Systems Group 00007 */ 00008 00009 #include <hal.h> 00010 #define NDEBUG 00011 #include <debug.h> 00012 #include <ndk/inbvfuncs.h> 00013 00014 /* PUBLIC FUNCTIONS ***********************************************************/ 00015 00016 /* 00017 * @implemented 00018 */ 00019 VOID 00020 NTAPI 00021 HalAcquireDisplayOwnership(IN PHAL_RESET_DISPLAY_PARAMETERS ResetDisplayParameters) 00022 { 00023 /* Stub since Windows XP implemented Inbv */ 00024 return; 00025 } 00026 00027 /* 00028 * @implemented 00029 */ 00030 VOID 00031 NTAPI 00032 HalDisplayString(IN PCH String) 00033 { 00034 /* Call the Inbv driver */ 00035 InbvDisplayString(String); 00036 } 00037 00038 /* 00039 * @implemented 00040 */ 00041 VOID 00042 NTAPI 00043 HalQueryDisplayParameters(OUT PULONG DispSizeX, 00044 OUT PULONG DispSizeY, 00045 OUT PULONG CursorPosX, 00046 OUT PULONG CursorPosY) 00047 { 00048 /* Stub since Windows XP implemented Inbv */ 00049 return; 00050 } 00051 00052 /* 00053 * @implemented 00054 */ 00055 VOID 00056 NTAPI 00057 HalSetDisplayParameters(IN ULONG CursorPosX, 00058 IN ULONG CursorPosY) 00059 { 00060 /* Stub since Windows XP implemented Inbv */ 00061 return; 00062 } 00063 00064 /* EOF */ Generated on Sat May 26 2012 04:15:35 for ReactOS by
1.7.6.1
|