//--------------------------------------------------------------------------- #ifndef JobThreadFH #define JobThreadFH //--------------------------------------------------------------------------- #include #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(); }; //--------------------------------------------------------------------------- extern PACKAGE TJobThread *JobThread; //--------------------------------------------------------------------------- #endif