-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigEditor.dpr
More file actions
37 lines (34 loc) · 1.47 KB
/
ConfigEditor.dpr
File metadata and controls
37 lines (34 loc) · 1.47 KB
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
program ConfigEditor;
uses
Vcl.Forms,
System.SysUtils,
FormMain in 'FormMain.pas' {FrmMain},
ConfigManager in 'ConfigManager.pas',
ConfigFrameBase in 'ConfigFrameBase.pas',
ControllerConfigs in 'ControllerConfigs.pas',
UtilsTypes in 'UtilsTypes.pas',
INIConfig in 'INIConfig.pas',
JSONConfig in 'JSONConfig.pas',
FrameBgDrawEditor in 'FrameBgDrawEditor.pas' {FrameBgDrawEditor: TFrame},
FrameVideoClipEditor in 'FrameVideoClipEditor.pas' {FrameVideoClipEditor: TFrame},
FrameVideoEditor in 'FrameVideoEditor.pas' {FrameVideoEditor: TFrame},
FrameNetConfigEditor in 'FrameNetConfigEditor.pas' {FrameNetConfigEditor: TFrame},
FrameGeoLocationEditor in 'FrameGeoLocationEditor.pas' {FrameGeoLocationEditor: TFrame},
FrameEncryptEditor in 'FrameEncryptEditor.pas' {FrameEncryptEditor: TFrame},
FrameDateTimeRangeEditor in 'FrameDateTimeRangeEditor.pas' {FrameDateTimeRangeEditor: TFrame},
ConfigValidator in 'ConfigValidator.pas',
ValidationDialog in 'ValidationDialog.pas' {frmValidation},
ErrorLogger in 'ErrorLogger.pas',
ErrorDialog in 'ErrorDialog.pas' {frmErrorDialog},
ExceptionRecovery in 'ExceptionRecovery.pas',
LazyLoadManager in 'LazyLoadManager.pas',
OptimizedJSONTreeView in 'OptimizedJSONTreeView.pas',
OptimizedINIGrid in 'OptimizedINIGrid.pas',
MemoryOptimizer in 'MemoryOptimizer.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TFrmMain, FrmMain);
Application.Run;
end.