2011-07-01 02:24:37 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-01 02:24:37 +04:00
|
|
|
* Unicode Utils
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-07-01 02:24:37 +04:00
|
|
|
#include <errno.h>
|
2011-08-09 08:23:27 +04:00
|
|
|
#include <wctype.h>
|
2012-09-24 02:08:12 +04:00
|
|
|
#include <freerdp/types.h>
|
|
|
|
#include <freerdp/utils/hexdump.h>
|
2011-07-01 02:24:37 +04:00
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
|
|
|
|
#include <freerdp/utils/unicode.h>
|
|
|
|
|
2012-09-23 22:37:49 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
int freerdp_AsciiToUnicodeAlloc(const CHAR* str, WCHAR** wstr, int length)
|
2012-09-23 22:37:49 +04:00
|
|
|
{
|
|
|
|
if (!str)
|
|
|
|
{
|
2012-09-24 02:08:12 +04:00
|
|
|
*wstr = NULL;
|
|
|
|
return 0;
|
2012-09-23 22:37:49 +04:00
|
|
|
}
|
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
if (length < 1)
|
|
|
|
length = strlen(str);
|
|
|
|
|
|
|
|
length = MultiByteToWideChar(CP_UTF8, 0, str, length, NULL, 0);
|
|
|
|
*wstr = (WCHAR*) malloc((length + 1) * sizeof(WCHAR));
|
2012-09-23 22:37:49 +04:00
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
MultiByteToWideChar(CP_UTF8, 0, str, length, (LPWSTR) (*wstr), length * sizeof(WCHAR));
|
|
|
|
(*wstr)[length] = 0;
|
2012-09-23 22:37:49 +04:00
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
return length;
|
2012-09-23 22:37:49 +04:00
|
|
|
}
|
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
int freerdp_UnicodeToAsciiAlloc(const WCHAR* wstr, CHAR** str, int length)
|
|
|
|
{
|
|
|
|
*str = malloc((length * 2) + 1);
|
2012-10-08 10:37:12 +04:00
|
|
|
memset(*str, 0, (length * 2) + 1);
|
2012-09-23 22:37:49 +04:00
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
WideCharToMultiByte(CP_UTF8, 0, wstr, length, *str, length, NULL, NULL);
|
2012-10-09 19:24:33 +04:00
|
|
|
(*str)[length] = 0;
|
2012-09-23 22:37:49 +04:00
|
|
|
|
2012-09-24 02:08:12 +04:00
|
|
|
return length;
|
2012-09-23 22:37:49 +04:00
|
|
|
}
|