summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/utils.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-09-02 18:01:59 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-09-02 18:01:59 +0000
commitb32bd0a340de47fda10fbca63c6cf664327533cf (patch)
tree1c3db0932c046d02232a58394ec420837adc51f1 /protocols/WhatsApp/src/utils.h
parentdd0979e4c86c5e9ee51a6b659464aa9bfd28ec2a (diff)
WhatsApp:
- added ability to send media files (patch by Cassio); - fix for wrongly sent acks (patch by Cassio); - project files cleaned up; - version bump; git-svn-id: http://svn.miranda-ng.org/main/trunk@15154 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/utils.h')
-rw-r--r--protocols/WhatsApp/src/utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/WhatsApp/src/utils.h b/protocols/WhatsApp/src/utils.h
index d9a1218312..0e760f5013 100644
--- a/protocols/WhatsApp/src/utils.h
+++ b/protocols/WhatsApp/src/utils.h
@@ -31,6 +31,9 @@ __forceinline TCHAR* str2t(const std::string &str)
{ return mir_utf8decodeT(str.c_str());
}
+std::vector<std::string> split(const std::string &s, char delim);
+std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems);
+
namespace utils
{
TCHAR* removeA(TCHAR *str);