diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-07 13:25:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-07 13:25:07 +0300 |
commit | e6edc1ba036f66f07878779d4d7a973c80d30efb (patch) | |
tree | c310656e2e9aaa4811e264ef2f811e79b5f582e4 /include/m_system_cpp.h | |
parent | a9fbe9a81a6777b4b358d93116ee15f9f07dfb6e (diff) |
hopefully last custom UrlDecode implementation removed
Diffstat (limited to 'include/m_system_cpp.h')
-rw-r--r-- | include/m_system_cpp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index 78df1577f5..35392c78e2 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -431,7 +431,10 @@ struct WCHAR_PARAM : public PARAM ///////////////////////////////////////////////////////////////////////////////
// http support
-MIR_CORE_DLL(CMStringA) mir_urlDecode(const char *szUrl);
+// works inline, in the same buffer, thus destroying its contents
+// returns the address of buffer passed
+MIR_CORE_DLL(char*) mir_urlDecode(char *szUrl);
+
MIR_CORE_DLL(CMStringA) mir_urlEncode(const char *szUrl);
#endif
|