aboutsummaryrefslogtreecommitdiff
path: root/mariadb-connector-c-v_2.3.7/win-iconv/mlang.h
diff options
context:
space:
mode:
Diffstat (limited to 'mariadb-connector-c-v_2.3.7/win-iconv/mlang.h')
-rw-r--r--mariadb-connector-c-v_2.3.7/win-iconv/mlang.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/mariadb-connector-c-v_2.3.7/win-iconv/mlang.h b/mariadb-connector-c-v_2.3.7/win-iconv/mlang.h
new file mode 100644
index 0000000..5cbf779
--- /dev/null
+++ b/mariadb-connector-c-v_2.3.7/win-iconv/mlang.h
@@ -0,0 +1,54 @@
+HRESULT WINAPI ConvertINetString(
+ LPDWORD lpdwMode,
+ DWORD dwSrcEncoding,
+ DWORD dwDstEncoding,
+ LPCSTR lpSrcStr,
+ LPINT lpnSrcSize,
+ LPBYTE lpDstStr,
+ LPINT lpnDstSize
+);
+
+HRESULT WINAPI ConvertINetMultiByteToUnicode(
+ LPDWORD lpdwMode,
+ DWORD dwSrcEncoding,
+ LPCSTR lpSrcStr,
+ LPINT lpnMultiCharCount,
+ LPWSTR lpDstStr,
+ LPINT lpnWideCharCount
+);
+
+HRESULT WINAPI ConvertINetUnicodeToMultiByte(
+ LPDWORD lpdwMode,
+ DWORD dwEncoding,
+ LPCWSTR lpSrcStr,
+ LPINT lpnWideCharCount,
+ LPSTR lpDstStr,
+ LPINT lpnMultiCharCount
+);
+
+HRESULT WINAPI IsConvertINetStringAvailable(
+ DWORD dwSrcEncoding,
+ DWORD dwDstEncoding
+);
+
+HRESULT WINAPI LcidToRfc1766A(
+ LCID Locale,
+ LPSTR pszRfc1766,
+ int nChar
+);
+
+HRESULT WINAPI LcidToRfc1766W(
+ LCID Locale,
+ LPWSTR pszRfc1766,
+ int nChar
+);
+
+HRESULT WINAPI Rfc1766ToLcidA(
+ LCID *pLocale,
+ LPSTR pszRfc1766
+);
+
+HRESULT WINAPI Rfc1766ToLcidW(
+ LCID *pLocale,
+ LPWSTR pszRfc1766
+);