diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 3 | ||||
-rw-r--r-- | include/m_srmm_int.h | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 83034f9677..66b0b2fdf9 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -400,7 +400,8 @@ namespace Chat bDoubleClick4Privat,
bLogIndentEnabled,
bLogLimitNames,
- bStripFormat;
+ bStripFormat,
+ bEnableCustomLogs;
extern MIR_APP_EXPORT CMOption<uint32_t>
iPopupFlags,
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index 8f824846dc..bbcd04093f 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -27,6 +27,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <m_gui.h>
+#define SRMM_MODULE "SRMM"
+
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// toolbar button internal representation
@@ -146,6 +148,8 @@ typedef CSrmmLogWindow *(MIR_CDECL *pfnSrmmLogCreator)(CMsgDialog &pDlg); MIR_APP_DLL(HANDLE) RegisterSrmmLog(CMPlugin *pPlugin, const char *pszShortName, const wchar_t *pwszScreenName, pfnSrmmLogCreator fnBuilder);
MIR_APP_DLL(void) UnregisterSrmmLog(HANDLE);
+MIR_APP_DLL(bool) Srmm_IsCustomLogUsed();
+
/////////////////////////////////////////////////////////////////////////////////////////
// Simple single-event based logger
|