-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAPI_NG_TestBed.dpr
41 lines (37 loc) · 2.25 KB
/
API_NG_TestBed.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
{*******************************************************************************************}
{*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*}
{*+ +*}
{*+ Filename : API_NG_TestBed.dpr +*}
{*+ +*}
{*+ Project/Job : Test application for the Betfair API-NG Delphi Interface Library +*}
{*+ +*}
{*+ Contents : DelphiXE Project file. +*}
{*+ +*}
{*+ Version : 1.09.00 +*}
{*+ +*}
{*+ Parameters : None +*}
{*+ +*}
{*+ Compiler : DelphiXE +*}
{*+ +*}
{*+ +*}
{*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*}
{*******************************************************************************************}
program API_NG_TestBed;
uses
Forms,
Sysutils,
frmMain in 'frmMain.pas' {fmMain},
frmBetfairLogin in 'frmBetfairLogin.pas' {fmBetfairLogin},
superobject in 'superobject.pas',
superxmlparser in 'superxmlparser.pas',
LBS_BetFairAPINGClasses in 'LBS_BetFairAPINGClasses.pas',
LBS_BetFairAPINGFunctions in 'LBS_BetFairAPINGFunctions.pas',
LBS_BetFairAPINGUtils in 'LBS_BetFairAPINGUtils.pas',
frmJSONDump in 'frmJSONDump.pas' {fmJSONDump};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TfmMain, fmMain);
Application.Run;
end.