reactos/include/ndk/inbvfuncs.h
Hermès Bélusca-Maïto e1ef078741 Create this branch to work on loading of different Kernel-Debugger DLL providers, and see whether it is possible to move KDBG from ntoskrnl to a new DLL called, say, KDROSDBG.DLL.
The idea then would be to have the following behaviour (when specifying the following options in the kernel command line):

/DEBUGPORT=COMi --> load KDCOM.DLL and use COMi port (i == 1,2,3,4) if possible.
/DEBUGPORT=FOO  --> load KDFOO.DLL (useful for KDUSB.DLL, KD1394.DLL, KDBAZIS.DLL for VirtualKD, etc...)
/DEBUGPORT=ROSDBG:[COMi|SCREEN|FILE|GDB|...] --> load KDROSDBG.DLL which contains the ROS kernel debugger, and use COMi or SCREEN or... as output port.

svn path=/branches/kd++/; revision=58883
2013-04-28 13:26:45 +00:00

126 lines
1.4 KiB
C

/*++ NDK Version: 0098
Copyright (c) Alex Ionescu. All rights reserved.
Header Name:
inbvfuncs.h
Abstract:
Function definitions for the Boot Video Driver.
Author:
Alex Ionescu (alexi@tinykrnl.org) - Updated - 27-Feb-2006
--*/
#ifndef _INBVFUNCS_H
#define _INBVFUNCS_H
//
// Dependencies
//
#include <umtypes.h>
#include <inbvtypes.h>
#ifndef NTOS_MODE_USER
//
// Ownership Functions
//
VOID
NTAPI
InbvAcquireDisplayOwnership(
VOID
);
BOOLEAN
NTAPI
InbvCheckDisplayOwnership(
VOID
);
VOID
NTAPI
InbvNotifyDisplayOwnershipLost(
_In_ INBV_RESET_DISPLAY_PARAMETERS Callback
);
//
// Installation Functions
//
VOID
NTAPI
InbvEnableBootDriver(
_In_ BOOLEAN Enable
);
VOID
NTAPI
InbvInstallDisplayStringFilter(
_In_ INBV_DISPLAY_STRING_FILTER DisplayFilter
);
BOOLEAN
NTAPI
InbvIsBootDriverInstalled(
VOID
);
//
// Display Functions
//
BOOLEAN
NTAPI
InbvDisplayString(
_In_ PCHAR String
);
BOOLEAN
NTAPI
InbvEnableDisplayString(
_In_ BOOLEAN Enable
);
BOOLEAN
NTAPI
InbvResetDisplay(
VOID
);
VOID
NTAPI
InbvSetScrollRegion(
_In_ ULONG Left,
_In_ ULONG Top,
_In_ ULONG Width,
_In_ ULONG Height
);
VOID
NTAPI
InbvSetTextColor(
_In_ ULONG Color
);
VOID
NTAPI
InbvSolidColorFill(
_In_ ULONG Left,
_In_ ULONG Top,
_In_ ULONG Width,
_In_ ULONG Height,
_In_ ULONG Color
);
VOID
NTAPI
InbvSetProgressBarSubset(
_In_ ULONG Floor,
_In_ ULONG Ceiling
);
#endif
#endif