mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-24 11:29:22 +02:00
* StackTop now common and changed to pointer (remove duplicate declaration)
git-svn-id: trunk@2753 -
This commit is contained in:
parent
237525c698
commit
21d7670a0b
@ -104,7 +104,6 @@ var
|
|||||||
(* 3 .. Presentation Manager OS/2 session *)
|
(* 3 .. Presentation Manager OS/2 session *)
|
||||||
(* 4 .. detached (background) OS/2 process *)
|
(* 4 .. detached (background) OS/2 process *)
|
||||||
ApplicationType: cardinal;
|
ApplicationType: cardinal;
|
||||||
StackTop : PtrUInt;
|
|
||||||
|
|
||||||
|
|
||||||
procedure SetDefaultOS2FileType (FType: ShortString);
|
procedure SetDefaultOS2FileType (FType: ShortString);
|
||||||
@ -543,7 +542,7 @@ begin
|
|||||||
begin
|
begin
|
||||||
DosGetInfoBlocks (@TIB, @PIB);
|
DosGetInfoBlocks (@TIB, @PIB);
|
||||||
StackBottom := pointer (TIB^.Stack);
|
StackBottom := pointer (TIB^.Stack);
|
||||||
StackTop := PtrUInt (TIB^.StackLimit);
|
StackTop := TIB^.StackLimit;
|
||||||
Environment := pointer (PIB^.Env);
|
Environment := pointer (PIB^.Env);
|
||||||
ApplicationType := PIB^.ProcType;
|
ApplicationType := PIB^.ProcType;
|
||||||
ProcessID := PIB^.PID;
|
ProcessID := PIB^.PID;
|
||||||
|
Loading…
Reference in New Issue
Block a user