123456789101112131415161718192021222324252627282930313233343536 |
- /****************************************************************************
- * @source : CommThread.h
- * @description : Comm Thread class header
- ****************************************************************************
- * DATE AUTHOR DESCRIPTION
- * --------------------------------------------------------------------------
- * 2012/03/09 CYM [100] First Cut
- *
- ****************************************************************************/
- //---------------------------------------------------------------------------
- #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
|