BSOne.SFC/Tocsg.Module/JumpListAnal/JumpListAnal.dpr

18 lines
408 B
Plaintext

program JumpListAnal;
uses
Vcl.Forms,
DJumpListAnal in 'DJumpListAnal.pas' {DlgJumpListAnal},
ProcessJumpList in 'ProcessJumpList.pas',
ParserLinkFile in 'ParserLinkFile.pas';
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TDlgJumpListAnal, DlgJumpListAnal);
Application.Run;
end.