JobThreadF.h 789 B

123456789101112131415161718192021222324252627282930
  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. virtual DWORD __fastcall Process(LPVOID AParam);
  16. virtual void __fastcall Cancel()
  17. {
  18. };
  19. int __fastcall SendVmsFormDownload();
  20. };
  21. //---------------------------------------------------------------------------
  22. extern PACKAGE TJobThread *JobThread;
  23. //---------------------------------------------------------------------------
  24. #endif