summaryrefslogtreecommitdiff
path: root/include/m_core.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-06-03 22:15:25 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-06-03 22:15:25 +0000
commitd9ba54db9c60f8d3261b6ed54065e81d94a98165 (patch)
tree95b8b436a31664204131140376f5a42fa17cd7d1 /include/m_core.h
parent0ad4fffb15944d82febdcec80ef920cd400d8169 (diff)
mir_base64_decode & mir_base64_encode moved to mir_core.dll
git-svn-id: http://svn.miranda-ng.org/main/trunk@4877 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_core.h')
-rw-r--r--include/m_core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/m_core.h b/include/m_core.h
index f67faf7be1..8c8602f921 100644
--- a/include/m_core.h
+++ b/include/m_core.h
@@ -453,6 +453,9 @@ MIR_CORE_DLL(void) mir_sha1_hash(mir_sha1_byte_t *dataIn, int len, mir_sha1_byte
///////////////////////////////////////////////////////////////////////////////
// strings
+MIR_CORE_DLL(void*) mir_base64_decode(const char *input, unsigned *outputLen);
+MIR_CORE_DLL(char*) mir_base64_encode(const BYTE *input, unsigned inputLen);
+
MIR_CORE_DLL(char*) rtrim(char *str);
MIR_CORE_DLL(WCHAR*) rtrimw(WCHAR *str);