diff options
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
|