//--------------------------------------------------------------------------- #ifndef COSThrdH #define COSThrdH //--------------------------------------------------------------------------- #include //--------------------------------------------------------------------------- class COSThread : public TThread { private: unsigned char Data[6]; protected: void __fastcall Execute(); public: __fastcall COSThread(bool CreateSuspended); void __fastcall UpdateStatusCaption(void); void __fastcall UpdateIRQCaption(void); }; //--------------------------------------------------------------------------- #endif