diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-16 16:34:08 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-16 16:34:08 +0300 |
commit | b1255c28dc19a3f13c4548019bb00e48a62d717d (patch) | |
tree | ca5d2bf5ef4dd017faf7b55690294fa17e94e8c4 /include | |
parent | 9dbd84f15e41fcda9d930995e12da8b33f5851c7 (diff) |
SRMM:
- fixes #2066 (tabSRMM: chat menu remains wide after closing);
- no need to export Chat_CreateGCMenu anymore;
- useless function Chat_DestroyGCMenu removed
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index dd54273544..838ee30e9c 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -396,10 +396,6 @@ EXTERN_C MIR_APP_DLL(void) Chat_UpdateOptions(); // runs ME_GC_EVENT with the parameters passed
EXTERN_C MIR_APP_DLL(BOOL) Chat_DoEventHook(SESSION_INFO *si, int iType, const USERINFO *pUser, const wchar_t* pszText, INT_PTR dwItem);
-// chat menu creation / destruction
-EXTERN_C MIR_APP_DLL(UINT) Chat_CreateGCMenu(HWND hwnd, HMENU hMenu, POINT pt, SESSION_INFO *si, const wchar_t *pszUID, const wchar_t *pszWordText);
-EXTERN_C MIR_APP_DLL(void) Chat_DestroyGCMenu(HMENU hMenu, int iIndex);
-
// calculates width or height of a string
EXTERN_C MIR_APP_DLL(int) Chat_GetTextPixelSize(const wchar_t *pszText, HFONT hFont, bool bWidth);
|