mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 19:29:26 +02:00
+ add a global that will contain all default namespaces passed in as parameters
git-svn-id: trunk@38914 -
This commit is contained in:
parent
e7f29e9e28
commit
b77b6b001f
@ -280,6 +280,8 @@ interface
|
||||
includesearchpath,
|
||||
frameworksearchpath : TSearchPathList;
|
||||
packagesearchpath : TSearchPathList;
|
||||
{ list of default namespaces }
|
||||
namespacelist : TCmdStrList;
|
||||
{ contains tpackageentry entries }
|
||||
packagelist : TFPHashList;
|
||||
autoloadunits : string;
|
||||
@ -1492,6 +1494,7 @@ implementation
|
||||
LinkLibraryAliases.Free;
|
||||
LinkLibraryOrder.Free;
|
||||
packagesearchpath.Free;
|
||||
namespacelist.Free;
|
||||
end;
|
||||
|
||||
procedure InitGlobals;
|
||||
@ -1528,6 +1531,7 @@ implementation
|
||||
objectsearchpath:=TSearchPathList.Create;
|
||||
frameworksearchpath:=TSearchPathList.Create;
|
||||
packagesearchpath:=TSearchPathList.Create;
|
||||
namespacelist:=TCmdStrList.Create;
|
||||
|
||||
{ Def file }
|
||||
usewindowapi:=false;
|
||||
|
Loading…
Reference in New Issue
Block a user