HP\李良庭
2025-07-08 868daf94f29ce1ffdd799a68c07bb668cd373bcd
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 GMMSoft;
 
uses
  //MultInst in 'pub\MultInst.pas',
  Forms,
  uMain in 'uMain.pas' {frmMain},
  SQLite3 in 'sqlite3\SQLite3.pas',
  sqlite3udf in 'sqlite3\sqlite3udf.pas',
  SQLiteTable3 in 'sqlite3\SQLiteTable3.pas',
  Global in 'pub\Global.pas',
  MsgVar in 'pub\MsgVar.pas',
  PubUtils in 'pub\PubUtils.pas',
  log4me in 'log\log4me.pas',
  uInit in 'init\uInit.pas',
  uDM in 'uDM.pas' {dm: TDataModule},
  uCalc in 'uCalc.pas' {frmCalc},
  ActuatorLib in 'lib\ActuatorLib.pas',
  uSaveData in 'uSaveData.pas',
  mantestThread in 'thread\mantestThread.pas',
  verifyThread in 'thread\verifyThread.pas',
  UntDes in 'pub\UntDes.pas',
  CpuidInfo in 'pub\CpuidInfo.pas',
  grainThread in 'thread\grainThread.pas',
  interceptThread in 'thread\interceptThread.pas',
  resetThread in 'thread\resetThread.pas',
  uTablet in 'uTablet.pas' {frmTablet},
  uInput in 'uInput.pas' {frmInput},
  testThread in 'thread\testThread.pas';
 
{$R *.res}
 
begin
  Application.Initialize;
  Application.CreateForm(TfrmMain, frmMain);
  Application.CreateForm(Tdm, dm);
  Application.Run;
end.