diff options
Diffstat (limited to 'plugins/MirandaG15/src/CIRCHistory.h')
-rw-r--r-- | plugins/MirandaG15/src/CIRCHistory.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/MirandaG15/src/CIRCHistory.h b/plugins/MirandaG15/src/CIRCHistory.h new file mode 100644 index 0000000000..299a80544b --- /dev/null +++ b/plugins/MirandaG15/src/CIRCHistory.h @@ -0,0 +1,23 @@ +#ifndef _CIRCHISTORY_H_
+#define _CIRCHISTORY_H_
+
+struct SIRCMessage
+{
+ tm Time;
+ bool bIsMe;
+ tstring strMessage;
+};
+
+
+class CIRCHistory
+{
+public:
+ tstring strChannel;
+ tstring strProtocol;
+ HANDLE hContact;
+ list<SIRCMessage> LMessages;
+ list<tstring> LUsers;
+};
+
+
+#endif
\ No newline at end of file |