diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-23 19:50:37 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-23 19:50:37 +0300 |
commit | ee04e9de4bd7c4858de7716868cd6a1aad93b824 (patch) | |
tree | 293e93a2a560ac59d68862aaa109cedfb469c932 /include | |
parent | 70a63279d9c0ae624e8d5689745faf962868ceea (diff) |
StdMsg: windows procs virtualization
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index d2d1e3ef72..2f2f25d039 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -26,6 +26,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #pragma warning(disable:4512)
+#include <time.h>
+
#include <m_string.h>
#include <m_chat.h>
#include <m_gui.h>
@@ -408,7 +410,8 @@ protected: CCtrlEdit *m_pLog, *m_pEntry;
SESSION_INFO *m_si;
COLORREF m_clrInputBG, m_clrInputFG;
-
+ time_t m_iLastEnterTime;
+
CCtrlListBox m_nickList;
CCtrlButton m_btnColor, m_btnBkColor;
CCtrlButton m_btnBold, m_btnItalic, m_btnUnderline;
|