summaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/7zip/win/CPP/Common/UTFConvert.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/3rdparty/7zip/win/CPP/Common/UTFConvert.h')
-rw-r--r--src/libs/3rdparty/7zip/win/CPP/Common/UTFConvert.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libs/3rdparty/7zip/win/CPP/Common/UTFConvert.h b/src/libs/3rdparty/7zip/win/CPP/Common/UTFConvert.h
new file mode 100644
index 000000000..16b02fe45
--- /dev/null
+++ b/src/libs/3rdparty/7zip/win/CPP/Common/UTFConvert.h
@@ -0,0 +1,12 @@
+// Common/UTFConvert.h
+
+#ifndef __COMMON_UTF_CONVERT_H
+#define __COMMON_UTF_CONVERT_H
+
+#include "MyString.h"
+
+bool CheckUTF8(const char *src) throw();
+bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString);
+bool ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString);
+
+#endif