aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/windows/msofficecomm/StringUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/native/windows/msofficecomm/StringUtils.h')
-rw-r--r--src/native/windows/msofficecomm/StringUtils.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/native/windows/msofficecomm/StringUtils.h b/src/native/windows/msofficecomm/StringUtils.h
new file mode 100644
index 0000000..1c0eb18
--- /dev/null
+++ b/src/native/windows/msofficecomm/StringUtils.h
@@ -0,0 +1,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_ */