diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-15 16:14:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-15 16:14:00 +0000 |
commit | c4e3c65e2e850f978516823397b802557ad7ef1a (patch) | |
tree | 3595748f3c7d78fcc2c6aafe6319209cd118f563 /src/modules/chat/chat.h | |
parent | 156c91b93ca6674da6f7021b8579b62d79403f20 (diff) |
- basic chat types to support plugin specific data;
- default value changed for SplitterY
git-svn-id: http://svn.miranda-ng.org/main/trunk@7667 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/chat/chat.h')
-rw-r--r-- | src/modules/chat/chat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/chat/chat.h b/src/modules/chat/chat.h index 534a209855..b543d2f424 100644 --- a/src/modules/chat/chat.h +++ b/src/modules/chat/chat.h @@ -23,6 +23,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <m_popup.h>
#include <m_fontservice.h>
+struct MODULEINFO : public GCModuleInfoBase {};
+struct SESSION_INFO : public GCSessionInfoBase {};
+struct LOGSTREAMDATA : public GCLogStreamDataBase {};
+
// special service for tweaking performance
#define MS_GC_GETEVENTPTR "GChat/GetNewEventPtr"
typedef INT_PTR(*GETEVENTFUNC)(WPARAM wParam, LPARAM lParam);
|