//--------------------------------------------------------------------------- #ifndef JobThreadFH #define JobThreadFH //--------------------------------------------------------------------------- #include #include "ITSCommF.h" //--------------------------------------------------------------------------- class TJobThread : public TItsThread { public: TJobThread(); ~TJobThread(); public: TPanel *FPnlState; virtual DWORD __fastcall Process(LPVOID AParam); virtual void __fastcall Cancel() { }; int __fastcall SendVmsFormDownload(); }; //--------------------------------------------------------------------------- extern PACKAGE TJobThread *JobThread; //--------------------------------------------------------------------------- #endif