From 868daf94f29ce1ffdd799a68c07bb668cd373bcd Mon Sep 17 00:00:00 2001 From: HP\李良庭 <liliangting@lanpucloud.cn:1111> Date: 星期二, 08 七月 2025 11:49:03 +0800 Subject: [PATCH] 提交分辨率自适应版本V3.1.0.1500 --- src/GMMSoft.dpr | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/src/GMMSoft.dpr b/src/GMMSoft.dpr new file mode 100644 index 0000000..53c1a80 --- /dev/null +++ b/src/GMMSoft.dpr @@ -0,0 +1,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. -- Gitblit v1.9.3