diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-04 13:40:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-04 13:40:41 +0000 |
commit | 2eaa3458b74ffdae9c91b4eb6fe84f8145af3fa1 (patch) | |
tree | ba00efa3a61d406348bd7a02b346bb60ef93fc4c /include | |
parent | f38b1ee1bfca4a60519101c605b8c6025044c86d (diff) |
- bin2hex() instead of manual loops;
- change of icon packets
git-svn-id: http://svn.miranda-ng.org/main/trunk@11239 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index b270cbf4ae..de06d7b744 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -403,8 +403,8 @@ struct CHAT_MANAGER HANDLE hBuildMenuEvent, hSendEvent;
FONTINFO aFonts[OPTIONS_FONTCOUNT];
SESSION_INFO *wndList;
- int *logIconBmpSize;
- PBYTE *pLogIconBmpBits;
+ size_t *logIconBmpSize;
+ char **pLogIconBmpBits;
// user-defined custom callbacks
void (*OnCreateModule)(MODULEINFO*);
|