Initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user