JobThreadF.h 899 B

123456789101112131415161718192021222324252627282930313233
  1. //---------------------------------------------------------------------------
  2. #ifndef JobThreadFH
  3. #define JobThreadFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include "ITSCommF.h"
  7. //---------------------------------------------------------------------------
  8. class TJobThread : public TItsThread
  9. {
  10. public:
  11. TJobThread();
  12. ~TJobThread();
  13. public:
  14. TPanel *FPnlState;
  15. TTimer *FTmrDb;
  16. virtual DWORD __fastcall Process(LPVOID AParam);
  17. virtual void __fastcall Cancel()
  18. {
  19. };
  20. int __fastcall SendVmsFormDownload();
  21. int __fastcall SendVmsStatusReq();
  22. void __fastcall updateLedColor(TColor AColor);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TJobThread *JobThread;
  26. //---------------------------------------------------------------------------
  27. #endif