mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-21 02:30:07 +02:00
Don't close console window by default
This commit is contained in:
@@ -7,7 +7,7 @@ var
|
||||
CursorXY: TCursorXY;
|
||||
|
||||
begin
|
||||
InitConsole('Date/Time');
|
||||
InitConsole('Date/Time', True);
|
||||
|
||||
CursorOff;
|
||||
GotoXY(27, 11);
|
||||
|
@@ -13,7 +13,7 @@ var
|
||||
Buffer: array[0..BUFFER_SIZE - 1] of KolibriChar;
|
||||
|
||||
begin
|
||||
InitConsole('Get Current Directory', False);
|
||||
InitConsole('Get Current Directory');
|
||||
|
||||
GetCurrentDirectory(Buffer, BUFFER_SIZE);
|
||||
|
||||
|
@@ -6,5 +6,4 @@ uses
|
||||
begin
|
||||
InitConsole('Hello');
|
||||
WriteLn('Hello, world!');
|
||||
ReadKey;
|
||||
end.
|
||||
|
@@ -8,7 +8,7 @@ var
|
||||
Buffer: Pointer;
|
||||
|
||||
begin
|
||||
InitConsole('Load File', False);
|
||||
InitConsole('Load File');
|
||||
Buffer := LoadFile('/sys/example.asm', FileSize);
|
||||
WriteLn(Buffer, FileSize);
|
||||
end.
|
||||
|
@@ -17,7 +17,7 @@ var
|
||||
Pos: LongWord;
|
||||
|
||||
begin
|
||||
InitConsole('Read Folder', False);
|
||||
InitConsole('Read Folder');
|
||||
|
||||
if ReadFolder(FolderPath, FolderInformation, 0, 0, 0, BlocksRead) = 0 then
|
||||
with FolderInformation do
|
||||
|
Reference in New Issue
Block a user