reactos/reactos/ntoskrnl/include/internal/inbv.h
Alex Ionescu ffe900f573 - Replace broken bootvid by a new bootvid based on TinyKRNL's version. It is a .DLL instead of a .SYS and takes advantage of my patch to FreeLDR which allows us to load DLLs that drivers/the kernel load.
- This new version is also binary compatible, so Windows's bootvid can be dropped instead and our kernel can talk to it. It has been tested under Windows/TinyKRNL.
- Write 90% of the Inbv component in the kernel. Displaying the boot bitmap hasn't yet been coded.
- The HAL is missing required routines for bootvid.dll, so it doesn't work yet.
- .BMP resources haven't yet been added to the kernel. I will add them soon.

svn path=/trunk/; revision=25706
2007-02-03 20:30:32 +00:00

33 lines
414 B
C

#ifndef NTOSKRNL_INBV_H
#define NTOSKRNL_INBV_H
typedef struct _InbvProgressState
{
ULONG Floor;
ULONG Ceiling;
ULONG Bias;
} INBV_PROGRESS_STATE;
VOID
NTAPI
InbvUpdateProgressBar(
IN ULONG Progress
);
BOOLEAN
NTAPI
InbvDriverInitialize(
IN PLOADER_PARAMETER_BLOCK LoaderBlock,
IN ULONG Count
);
VOID
NTAPI
InbvEnableBootDriver(
IN BOOLEAN Enable
);
#endif /* NTOSKRNL_INBV_H */