//--------------------------------------------------------------------------- #ifndef IRQMThrdH #define IRQMThrdH //--------------------------------------------------------------------------- #include //--------------------------------------------------------------------------- class TIRQThread : public TThread { private: protected: void __fastcall Execute(); public: unsigned char IRQ; unsigned long IRQCount; __fastcall TIRQThread(bool CreateSuspended); void __fastcall UpdateStatusCaption(void); void __fastcall UpdateIRQCaption(void); }; //--------------------------------------------------------------------------- #endif