diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-23 18:13:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-23 18:13:02 +0300 |
commit | 70a63279d9c0ae624e8d5689745faf962868ceea (patch) | |
tree | bcdf186a58ae17eadab6eae45187dca712b6b8a6 /include | |
parent | 8581cf96fc02be7fdf5fc32b389038ec33dd6822 (diff) |
stubs for the message entry, log & nicklist window procedures
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index a43327e6a0..d2d1e3ef72 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -446,6 +446,10 @@ public: virtual void UpdateStatusBar() {}
virtual void UpdateTitle() PURE;
+ virtual LRESULT WndProc_Log(UINT msg, WPARAM wParam, LPARAM lParam);
+ virtual LRESULT WndProc_Message(UINT msg, WPARAM wParam, LPARAM lParam);
+ virtual LRESULT WndProc_Nicklist(UINT msg, WPARAM wParam, LPARAM lParam);
+
__forceinline bool isChat() const { return m_si != nullptr; }
__inline void* operator new(size_t size){ return calloc(1, size); }
|