//--------------------------------------------------------------------------- #ifndef CommThreadH #define CommThreadH //--------------------------------------------------------------------------- #include #include "ITSLogF.h" //--------------------------------------------------------------------------- class TCommThread : public TThread { private: protected: void __fastcall Execute(); public: __fastcall TCommThread(void); __fastcall TCommThread(bool CreateSuspended); __fastcall ~TCommThread(void); void DisplayMsg(unsigned int AMsg); IPC_LOG_MESSAGE FLogMsg; int LogWrite(int ALogKind, char *AFmt, ...); }; //--------------------------------------------------------------------------- #endif