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