FreeRDP
Loading...
Searching...
No Matches
unicode.h
1
21#ifndef WINPR_CRT_UNICODE_INTERNAL
22#define WINPR_CRT_UNICODE_INTERNAL
23
24#include <winpr/wtypes.h>
25
26int int_MultiByteToWideChar(UINT CodePage, DWORD dwFlags, LPCSTR lpMultiByteStr, int cbMultiByte,
27 LPWSTR lpWideCharStr, int cchWideChar);
28
29int int_WideCharToMultiByte(UINT CodePage, DWORD dwFlags, LPCWSTR lpWideCharStr, int cchWideChar,
30 LPSTR lpMultiByteStr, int cbMultiByte, LPCSTR lpDefaultChar,
31 LPBOOL lpUsedDefaultChar);
32#endif