Initial commit

This commit is contained in:
2026-06-13 00:05:19 +08:00
commit 754cd7ccdb
402 changed files with 123771 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
//---------------------------------------------------------------------------
#ifndef ProgressThreadUnitH
#define ProgressThreadUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
//---------------------------------------------------------------------------
class TProgressThread : public TThread
{
private:
TForm * m_pForm;
protected:
void __fastcall Execute();
public:
__fastcall TProgressThread(bool CreateSuspended, TForm* pForm);
};
//---------------------------------------------------------------------------
#endif