mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-07 14:28:35 +00:00
trunk contents moved to root
This commit is contained in:
24
libsrc/FlashPlayer/FlashPlayer.dpr
Normal file
24
libsrc/FlashPlayer/FlashPlayer.dpr
Normal file
@@ -0,0 +1,24 @@
|
||||
program FlashPlayer;
|
||||
|
||||
uses
|
||||
Forms,
|
||||
Windows,
|
||||
Dialogs,
|
||||
uMain in 'uMain.pas' {frmMain};
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.Title := 'FFDec Flash Player';
|
||||
if(ParamCount<2) then
|
||||
begin
|
||||
ShowMessage('Wrong parameter count. This EXE is for FFDec internal use only.');
|
||||
Application.Terminate;
|
||||
end
|
||||
else
|
||||
begin
|
||||
Application.CreateForm(TfrmMain, frmMain);
|
||||
end;
|
||||
Application.Run;
|
||||
end.
|
||||
Reference in New Issue
Block a user