Initial commit

This commit is contained in:
2026-06-12 23:18:12 +08:00
commit 424bde1b02
249 changed files with 40338 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
//---------------------------------------------------------------------------
#ifndef BaseThreadH
#define BaseThreadH
//---------------------------------------------------------------------------
///////////////////////////////
//
// Ïß³Ì
//
class TBaseThread : public TThread
{
protected:
HANDLE m_hHaltSema;
bool m_bWaiting;
bool __fastcall Halt( DWORD dwMS );
public:
__fastcall TBaseThread();
__fastcall ~TBaseThread();
virtual void __fastcall Cancel();
};
#endif