JobThreadF.h 848 B

1234567891011121314151617181920212223242526272829303132
  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. };
  23. //---------------------------------------------------------------------------
  24. extern PACKAGE TJobThread *JobThread;
  25. //---------------------------------------------------------------------------
  26. #endif