blob: 1c0eb18df34b88b7ea303be7efd8b241216338d0 (
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 _JMSOFFICECOMM_STRINGUTILS_H_
#define _JMSOFFICECOMM_STRINGUTILS_H_
#include <tchar.h>
#include <windows.h>
class StringUtils
{
public:
static LPWSTR MultiByteToWideChar(LPCSTR str);
static LPSTR WideCharToMultiByte(LPCWSTR wstr);
};
#endif /* #ifndef _JMSOFFICECOMM_STRINGUTILS_H_ */
|