mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 07:29:29 +02:00
* missing calls to InitWideStringManager added
git-svn-id: trunk@1071 -
This commit is contained in:
parent
caecabf7ba
commit
eb26e1aa39
@ -766,5 +766,8 @@ begin
|
|||||||
errno := 0;
|
errno := 0;
|
||||||
{ Setup command line arguments }
|
{ Setup command line arguments }
|
||||||
argc:=GetParamCount(args);
|
argc:=GetParamCount(args);
|
||||||
initvariantmanager;
|
InitVariantManager;
|
||||||
|
{$ifdef HASWIDESTRING}
|
||||||
|
InitWideStringManager;
|
||||||
|
{$endif HASWIDESTRING}
|
||||||
end.
|
end.
|
||||||
|
@ -567,7 +567,11 @@ begin
|
|||||||
|
|
||||||
InitSystemThreads;
|
InitSystemThreads;
|
||||||
|
|
||||||
initvariantmanager;
|
InitVariantManager;
|
||||||
|
|
||||||
|
{$ifdef HASWIDESTRING}
|
||||||
|
InitWideStringManager;
|
||||||
|
{$endif HASWIDESTRING}
|
||||||
|
|
||||||
if os_Mode in [osDOS,osDPMI] then
|
if os_Mode in [osDOS,osDPMI] then
|
||||||
DosEnvInit;
|
DosEnvInit;
|
||||||
|
@ -753,7 +753,11 @@ begin
|
|||||||
DefaultFileType := '';
|
DefaultFileType := '';
|
||||||
|
|
||||||
InitSystemThreads;
|
InitSystemThreads;
|
||||||
initvariantmanager;
|
InitVariantManager;
|
||||||
|
|
||||||
|
{$ifdef HASWIDESTRING}
|
||||||
|
InitWideStringManager;
|
||||||
|
{$endif HASWIDESTRING}
|
||||||
|
|
||||||
{$IFDEF EXTDUMPGROW}
|
{$IFDEF EXTDUMPGROW}
|
||||||
{ Int_HeapSize := high (cardinal);}
|
{ Int_HeapSize := high (cardinal);}
|
||||||
|
Loading…
Reference in New Issue
Block a user