forked from rodrigonh/Tardsplaya
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Tardsplaya.dpr
53 lines (48 loc) · 1.76 KB
/
Tardsplaya.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
program Tardsplaya;
{$WEAKLINKRTTI ON}
{$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}
uses
FastMM5,
StackTrace,
Windows,
Vcl.Forms,
frmSettings in 'Forms\frmSettings.pas' {TPSettingsForm},
HelloWorker in 'Units\HelloWorker.pas',
TPConsts in 'Units\TPConsts.pas',
TPGetStreamUrlsPwnTask in 'Units\TPGetStreamUrlsPwnTask.pas',
TPUtil in 'Units\TPUtil.pas',
TPWriteStreamToPlayerTask in 'Units\TPWriteStreamToPlayerTask.pas',
TPGetStreamUrlsGqlTask in 'Units\TPGetStreamUrlsGqlTask.pas',
TPLogging in 'Units\TPLogging.pas',
TPUniWrapper in 'Units\TPUniWrapper.pas',
TPDoDlStreamTask in 'Units\TPDoDlStreamTask.pas',
frmMain in 'Forms\frmMain.pas' {TPMainForm},
frmStream in 'Forms\frmStream.pas' {Form3},
dlgRunMultipleStreams in 'Forms\dlgRunMultipleStreams.pas' {RunMultipleStreamsDlg},
PageControlEx in 'Units\TDI\PageControlEx.pas',
TabCloseButton in 'Units\TDI\TabCloseButton.pas',
TDI in 'Units\TDI\TDI.pas',
VisualizaImagensDasGuiasAbertas in 'Units\TDI\VisualizaImagensDasGuiasAbertas.pas';
{$IFDEF RELEASE}
{$SETPEFLAGS IMAGE_FILE_RELOCS_STRIPPED or
IMAGE_FILE_DEBUG_STRIPPED or
IMAGE_FILE_LINE_NUMS_STRIPPED or
IMAGE_FILE_LOCAL_SYMS_STRIPPED}
{$ENDIF}
{$R *.res}
begin
{$IFDEF DEBUG}
ReportMemoryLeaksOnShutdown := True;
FastMM_LogToFileEvents := FastMM_LogToFileEvents
+ [mmetUnexpectedMemoryLeakDetail,
mmetUnexpectedMemoryLeakSummary,
mmetCannotInstallAfterDefaultMemoryManagerHasBeenUsed];
FastMM_EnterDebugMode;
//FastMM_ExitDebugMode;
{$ENDIF}
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TTPMainForm, TPMainForm);
Application.CreateForm(TRunMultipleStreamsDlg, RunMultipleStreamsDlg);
Application.Run;
end.