diff options
author | George Hazan <george.hazan@gmail.com> | 2023-09-05 15:35:12 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-09-05 15:35:12 +0300 |
commit | 28c2eb96831f1e6088e4b498f8125b050585dd3b (patch) | |
tree | 2bff3cbedb270fdba4288c0eacf2b5381a77b4c9 /include | |
parent | a074799eaf3218c979fa07d8a76525aa0ec7b9fd (diff) |
SRMM: quoting unification
Diffstat (limited to 'include')
-rw-r--r-- | include/m_srmm_int.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index bbcd04093f..2d69f7d00f 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -314,7 +314,7 @@ protected: public:
MCONTACT m_hContact;
- MEVENT m_hDbEventFirst, m_hDbEventLast;
+ MEVENT m_hDbEventFirst;
int m_iLogFilterFlags;
bool m_bFilterEnabled, m_bNicklistEnabled;
bool m_bFGSet, m_bBGSet;
@@ -391,4 +391,9 @@ MIR_APP_DLL(void) Srmm_DownloadOfflineFile(MCONTACT hContact, MEVENT hDbEvent, i MIR_APP_DLL(HWND) Srmm_FindWindow(MCONTACT hContact);
MIR_APP_DLL(CMsgDialog*) Srmm_FindDialog(MCONTACT hContact);
+/////////////////////////////////////////////////////////////////////////////////////////
+// quotes a string
+
+MIR_APP_DLL(CMStringW) Srmm_Quote(const wchar_t *pwzsText, int iWrapWidth = -1);
+
#endif // M_MESSAGE_H__
|