mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 10:49:17 +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 *)
|
||||
(* 4 .. detached (background) OS/2 process *)
|
||||
ApplicationType: cardinal;
|
||||
StackTop : PtrUInt;
|
||||
|
||||
|
||||
procedure SetDefaultOS2FileType (FType: ShortString);
|
||||
@ -543,7 +542,7 @@ begin
|
||||
begin
|
||||
DosGetInfoBlocks (@TIB, @PIB);
|
||||
StackBottom := pointer (TIB^.Stack);
|
||||
StackTop := PtrUInt (TIB^.StackLimit);
|
||||
StackTop := TIB^.StackLimit;
|
||||
Environment := pointer (PIB^.Env);
|
||||
ApplicationType := PIB^.ProcType;
|
||||
ProcessID := PIB^.PID;
|
||||
|
Loading…
Reference in New Issue
Block a user