2014-05-18 18:09:07 +00:00
|
|
|
|
program X2LogTest;
|
|
|
|
|
|
|
|
|
|
uses
|
2014-05-20 08:49:57 +00:00
|
|
|
|
madExcept,
|
|
|
|
|
madLinkDisAsm,
|
|
|
|
|
madListHardware,
|
|
|
|
|
madListProcesses,
|
|
|
|
|
madListModules,
|
2014-05-18 18:09:07 +00:00
|
|
|
|
Forms,
|
|
|
|
|
MainFrm in 'source\MainFrm.pas' {MainForm},
|
|
|
|
|
X2Log.Intf in '..\X2Log.Intf.pas',
|
|
|
|
|
X2Log in '..\X2Log.pas',
|
|
|
|
|
X2Log.Observer.Event in '..\X2Log.Observer.Event.pas',
|
|
|
|
|
X2Log.Observer.Custom in '..\X2Log.Observer.Custom.pas',
|
|
|
|
|
X2Log.Exception.Default in '..\X2Log.Exception.Default.pas',
|
|
|
|
|
X2Log.Exception.madExcept in '..\X2Log.Exception.madExcept.pas',
|
|
|
|
|
X2Log.Observer.LogFile in '..\X2Log.Observer.LogFile.pas',
|
|
|
|
|
X2Log.Constants in '..\X2Log.Constants.pas',
|
|
|
|
|
X2Log.Observer.NamedPipe in '..\X2Log.Observer.NamedPipe.pas',
|
2014-05-20 06:59:10 +00:00
|
|
|
|
X2Log.Observer.CustomThreaded in '..\X2Log.Observer.CustomThreaded.pas',
|
|
|
|
|
X2Log.Observer.MonitorForm in '..\X2Log.Observer.MonitorForm.pas' {X2LogObserverMonitorForm},
|
2014-05-25 14:20:58 +00:00
|
|
|
|
X2Log.Global in '..\X2Log.Global.pas',
|
|
|
|
|
X2Log.Client.NamedPipe in '..\X2Log.Client.NamedPipe.pas',
|
2014-05-26 17:20:27 +00:00
|
|
|
|
X2Log.Client.Base in '..\X2Log.Client.Base.pas',
|
|
|
|
|
X2Log.Registry.NamedPipe in '..\X2Log.Registry.NamedPipe.pas';
|
2014-05-18 18:09:07 +00:00
|
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
MainForm: TMainForm;
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
Application.Initialize;
|
|
|
|
|
Application.MainFormOnTaskbar := True;
|
2014-05-20 08:49:57 +00:00
|
|
|
|
Application.Title := 'X<>LogTest';
|
2014-05-18 18:09:07 +00:00
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
|
Application.Run;
|
|
|
|
|
end.
|