#ifndef _CIRCHISTORY_H_ #define _CIRCHISTORY_H_ struct SIRCMessage { tm Time; bool bIsMe; tstring strMessage; }; class CIRCHistory { public: tstring strChannel; tstring strProtocol; HANDLE hContact; list LMessages; list LUsers; }; #endif