mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-22 15:13:49 +02:00
CRT cursor function param/result types made compatible to Console.obj documentation
This commit is contained in:
@@ -11,7 +11,7 @@ uses
|
|||||||
|
|
||||||
type
|
type
|
||||||
TCursorXY = record
|
TCursorXY = record
|
||||||
X, Y: LongWord;
|
X, Y: Integer;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
const
|
const
|
||||||
@@ -97,10 +97,10 @@ var
|
|||||||
ConsoleInit: procedure(WndWidth, WndHeight, ScrWidth, ScrHeight: LongWord; Caption: PKolibriChar); stdcall;
|
ConsoleInit: procedure(WndWidth, WndHeight, ScrWidth, ScrHeight: LongWord; Caption: PKolibriChar); stdcall;
|
||||||
GetCursorHeight: function: Integer; stdcall;
|
GetCursorHeight: function: Integer; stdcall;
|
||||||
GetFlags: function: LongWord; stdcall;
|
GetFlags: function: LongWord; stdcall;
|
||||||
GotoXYProc: procedure(X, Y: LongWord); stdcall;
|
GotoXYProc: procedure(X, Y: Integer); stdcall;
|
||||||
SetFlags: function(Flags: LongWord): LongWord; stdcall;
|
SetFlags: function(Flags: LongWord): LongWord; stdcall;
|
||||||
SetCursorHeight: function(Height: Integer): Integer; stdcall;
|
SetCursorHeight: function(Height: Integer): Integer; stdcall;
|
||||||
WhereXYProc: procedure(var X, Y: LongWord); stdcall;
|
WhereXYProc: procedure(var X, Y: Integer); stdcall;
|
||||||
|
|
||||||
procedure InitConsole(Caption: PKolibriChar; CloseWindowOnExit: Boolean;
|
procedure InitConsole(Caption: PKolibriChar; CloseWindowOnExit: Boolean;
|
||||||
WndWidth, WndHeight, ScrWidth, ScrHeight: LongWord);
|
WndWidth, WndHeight, ScrWidth, ScrHeight: LongWord);
|
||||||
|
Reference in New Issue
Block a user