blob: fe2b078c792516175ef4965afcc1643cbf689f3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
#ifndef _NET_JAVA_SIP_COMMUNICATOR_PLUGIN_ADDRBOOK_MSOUTLOOK_STRINGUTILS_H_
#define _NET_JAVA_SIP_COMMUNICATOR_PLUGIN_ADDRBOOK_MSOUTLOOK_STRINGUTILS_H_
#include <tchar.h>
#include <windows.h>
class StringUtils
{
public:
static LPWSTR MultiByteToWideChar(LPCSTR str);
static LPSTR WideCharToMultiByte(LPCWSTR wstr);
};
#endif
|