//--------------------------------------------------------------------------- #ifndef IRQThrdH #define IRQThrdH //--------------------------------------------------------------------------- #include //--------------------------------------------------------------------------- class IRQThread : public TThread { private: unsigned long LastError; protected: void __fastcall Execute(); public: __fastcall IRQThread(bool CreateSuspended); void __fastcall UpdateStatusCaption(void); void __fastcall UpdateIRQCaption(void); void __fastcall ReportError(void); }; //--------------------------------------------------------------------------- #endif