mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-22 07:03:53 +02:00
SDK preparation procedure reworked with init-for-IDE script
This commit is contained in:
25
Lib/SysInit.pas
Normal file
25
Lib/SysInit.pas
Normal file
@@ -0,0 +1,25 @@
|
||||
(*
|
||||
KolibriOS RTL System unit
|
||||
*)
|
||||
|
||||
unit SysInit;
|
||||
|
||||
interface
|
||||
|
||||
procedure _InitExe(InitTable: PPackageInfo);
|
||||
|
||||
var
|
||||
TLSIndex: Integer = -1;
|
||||
TLSLast: Byte;
|
||||
|
||||
const
|
||||
PtrToNil: Pointer = nil;
|
||||
|
||||
implementation
|
||||
|
||||
procedure _InitExe(InitTable: PPackageInfo);
|
||||
begin
|
||||
_StartExe(InitTable);
|
||||
end;
|
||||
|
||||
end.
|
Reference in New Issue
Block a user