123456789101112131415161718192021222324252627 |
- //---------------------------------------------------------------------------
- #ifndef CommThreadH
- #define CommThreadH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #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
|