mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:11:57 +00:00
[BOOTVID] Annotate some functions to avoid confusing (#2936)
Also fix some magic constants.
This commit is contained in:
parent
4d54b8ce69
commit
da9384b918
6 changed files with 14 additions and 14 deletions
|
@ -51,7 +51,7 @@ BitBlt(
|
|||
_In_ ULONG Top,
|
||||
_In_ ULONG Width,
|
||||
_In_ ULONG Height,
|
||||
_In_ PUCHAR Buffer,
|
||||
_In_reads_bytes_(Delta * Height) PUCHAR Buffer,
|
||||
_In_ ULONG BitsPerPixel,
|
||||
_In_ ULONG Delta)
|
||||
{
|
||||
|
@ -318,7 +318,7 @@ VidSetTextColor(
|
|||
VOID
|
||||
NTAPI
|
||||
VidDisplayStringXY(
|
||||
_In_ PUCHAR String,
|
||||
_In_z_ PUCHAR String,
|
||||
_In_ ULONG Left,
|
||||
_In_ ULONG Top,
|
||||
_In_ BOOLEAN Transparent)
|
||||
|
@ -368,7 +368,7 @@ VidSetScrollRegion(
|
|||
VOID
|
||||
NTAPI
|
||||
VidDisplayString(
|
||||
_In_ PUCHAR String)
|
||||
_In_z_ PUCHAR String)
|
||||
{
|
||||
/* Start looping the string */
|
||||
for (; *String; ++String)
|
||||
|
@ -446,7 +446,7 @@ VidDisplayString(
|
|||
VOID
|
||||
NTAPI
|
||||
VidBufferToScreenBlt(
|
||||
_In_ PUCHAR Buffer,
|
||||
_In_reads_bytes_(Delta * Height) PUCHAR Buffer,
|
||||
_In_ ULONG Left,
|
||||
_In_ ULONG Top,
|
||||
_In_ ULONG Width,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue