diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-17 22:30:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-17 22:30:41 +0300 |
commit | 7f7252104c054002c8b30636ac0b327e915e7b6d (patch) | |
tree | 99dc464c7b21f5917e5ccaa9acff82b12e2b6c4e /include/m_utils.h | |
parent | f7d5fcc117aaeccfdc98bce2a4280641ee7e52c9 (diff) |
Utils_OpenUrlT
Utils_ReplaceVarsT
Diffstat (limited to 'include/m_utils.h')
-rw-r--r-- | include/m_utils.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/include/m_utils.h b/include/m_utils.h index 066b328cc9..694e87715f 100644 --- a/include/m_utils.h +++ b/include/m_utils.h @@ -50,8 +50,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. EXTERN_C MIR_CORE_DLL(void) Utils_OpenUrl(const char *pszUrl, bool bOpenInNewWindow = true);
EXTERN_C MIR_CORE_DLL(void) Utils_OpenUrlW(const wchar_t *pszUrl, bool bOpenInNewWindow = true);
-#define Utils_OpenUrlT Utils_OpenUrlW
-
/////////////////////////////////////////////////////////////////////////////////////////
// Resizes a dialog by calling a custom routine to move the individual
// Returns 0 on success, or nonzero on failure
@@ -91,7 +89,7 @@ lParam = 0 Returns a pointer to the string containing the country name on success,
or NULL on failure
*/
-#define MS_UTILS_GETCOUNTRYBYNUMBER "Utils/GetCountryByNumber"
+#define MS_UTILS_GETCOUNTRYBYNUMBER "Utils/GetCountryByNumber"
/* Gets the name of a country given its ISO code v0.1.2.0+
wParam = (char*)ISOcode
@@ -99,7 +97,7 @@ lParam = 0 Returns a pointer to the string containing the country name on success,
or NULL on failure
*/
-#define MS_UTILS_GETCOUNTRYBYISOCODE "Utils/GetCountryByISOCode"
+#define MS_UTILS_GETCOUNTRYBYISOCODE "Utils/GetCountryByISOCode"
/* Gets the full list of country IDs v0.1.2.0+
wParam = (WPARAM)(int*)piCount
@@ -114,7 +112,7 @@ struct CountryListEntry { const char *szName;
char ISOcode[3];
};
-#define MS_UTILS_GETCOUNTRYLIST "Utils/GetCountryList"
+#define MS_UTILS_GETCOUNTRYLIST "Utils/GetCountryList"
/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////// Window lists //////////////////////////////////////
@@ -354,8 +352,6 @@ struct REPLACEVARSARRAY EXTERN_C MIR_APP_DLL(char*) Utils_ReplaceVars(const char *szData, MCONTACT hContact = 0, REPLACEVARSARRAY *vars = NULL);
EXTERN_C MIR_APP_DLL(wchar_t*) Utils_ReplaceVarsW(const wchar_t *szData, MCONTACT hContact = 0, REPLACEVARSARRAY *vars = NULL);
-#define Utils_ReplaceVarsT Utils_ReplaceVarsW
-
#if defined(__cplusplus)
#if !defined(M_SYSTEM_CPP_H__)
#include "m_system_cpp.h"
|