mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 21:10:11 +02:00
* fixed compilation broken by rename of unit unzip to unzip51g
git-svn-id: trunk@13989 -
This commit is contained in:
parent
09b22de964
commit
05346b4ee3
@ -52,7 +52,7 @@ uses
|
|||||||
Windows,
|
Windows,
|
||||||
{$ENDIF WIN32}
|
{$ENDIF WIN32}
|
||||||
{$ENDIF OS2}
|
{$ENDIF OS2}
|
||||||
Unzip, Dos;
|
Unzip51g, Dos;
|
||||||
|
|
||||||
type
|
type
|
||||||
UzpMainFunc = function (ArgC: longint; var ArgV: TArgV): longint; cdecl;
|
UzpMainFunc = function (ArgC: longint; var ArgV: TArgV): longint; cdecl;
|
||||||
@ -237,6 +237,6 @@ begin
|
|||||||
WriteLn ('under some conditions (e.g. for long names and drives not supporting them).');
|
WriteLn ('under some conditions (e.g. for long names and drives not supporting them).');
|
||||||
Write (#13#10'Do you want to continue now (y/N)? ');
|
Write (#13#10'Do you want to continue now (y/N)? ');
|
||||||
ReadLn (C);
|
ReadLn (C);
|
||||||
if UpCase (C) = 'Y' then FileUnzipEx := TFileUnzipEx (@Unzip.FileUnzipEx) else Halt (255);
|
if UpCase (C) = 'Y' then FileUnzipEx := TFileUnzipEx (@Unzip51g.FileUnzipEx) else Halt (255);
|
||||||
end;
|
end;
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user