123456789101112131415161718192021222324252627282930313233 |
- //---------------------------------------------------------------------------
- #ifndef JobThreadFH
- #define JobThreadFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include "ITSCommF.h"
- //---------------------------------------------------------------------------
- class TJobThread : public TItsThread
- {
- public:
- TJobThread();
- ~TJobThread();
- public:
- TPanel *FPnlState;
- TTimer *FTmrDb;
- virtual DWORD __fastcall Process(LPVOID AParam);
- virtual void __fastcall Cancel()
- {
- };
- int __fastcall SendVmsFormDownload();
- int __fastcall SendVmsStatusReq();
- void __fastcall updateLedColor(TColor AColor);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TJobThread *JobThread;
- //---------------------------------------------------------------------------
- #endif
|