diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 19:19:14 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 19:19:14 +0300 |
commit | e45e2f1683f984ec5ef05c0b4ffff87ee0405f43 (patch) | |
tree | a2440baf78c8ec3ec7d6f8095ef3f4e3e7ab8ad0 /include | |
parent | 0637ba6920b7e7b3ef2b8fd8450d90262ac77649 (diff) |
code cleaning
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clist.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 463ce493c2..f919bc5c06 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -54,6 +54,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. EXTERN_C MIR_APP_DLL(void) Clist_SetStatusMode(int iStatus);
/////////////////////////////////////////////////////////////////////////////////////////
+// returns the text associated with the given status
+
+#define GSMDF_UNTRANSLATED 4 // don't tranlate the result
+EXTERN_C MIR_APP_DLL(wchar_t*) Clist_GetStatusModeDescription(int iStatus, int iFlags /*GSMDF_*/);
+
+/////////////////////////////////////////////////////////////////////////////////////////
// detects whether a protocol is visible or not
EXTERN_C MIR_APP_DLL(bool) Clist_GetProtocolVisibility(const char *szModuleName);
@@ -564,8 +570,4 @@ EXTERN_C MIR_APP_DLL(int) Clist_TrayNotifyW(const char *szProto, const wchar_t * #define SETTING_BRINGTOFRONT_DEFAULT 0
-#ifndef M_CLISTINT_H__
-#include <m_clistint.h>
-#endif
-
#endif // M_CLIST_H__
|