* StackTop now common and changed to pointer (remove duplicate declaration)

git-svn-id: trunk@2753 -
This commit is contained in:
Tomas Hajny 2006-03-05 10:41:47 +00:00
parent 237525c698
commit 21d7670a0b

View File

@ -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;