blob: 69b2b639f8e96bfcbb119ac3c101b9c52738c0fc [file] [log] [blame]
Benny Prijono9cf138e2006-01-19 03:58:29 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
Benny Prijono37e8d332006-01-20 21:03:36 +000019#include <pj/unicode.h>
Benny Prijono9cf138e2006-01-19 03:58:29 +000020#include <pj/assert.h>
21#include <pj/string.h>
22#include <windows.h>
23
24
Benny Prijono37e8d332006-01-20 21:03:36 +000025PJ_DEF(wchar_t*) pj_ansi_to_unicode(const char *s, pj_size_t len,
26 wchar_t *buf, pj_size_t buf_count)
Benny Prijono9cf138e2006-01-19 03:58:29 +000027{
Benny Prijono37e8d332006-01-20 21:03:36 +000028 PJ_ASSERT_RETURN(s && buf, NULL);
Benny Prijono9cf138e2006-01-19 03:58:29 +000029
Benny Prijono37e8d332006-01-20 21:03:36 +000030 len = MultiByteToWideChar(CP_ACP, 0, s, len,
Benny Prijono9cf138e2006-01-19 03:58:29 +000031 buf, buf_count);
Benny Prijono37e8d332006-01-20 21:03:36 +000032 buf[len] = 0;
Benny Prijono9cf138e2006-01-19 03:58:29 +000033 return buf;
34}
Benny Prijono37e8d332006-01-20 21:03:36 +000035
36
37PJ_DEF(char*) pj_unicode_to_ansi( const wchar_t *wstr, pj_size_t len,
38 char *buf, pj_size_t buf_size)
39{
40 PJ_ASSERT_RETURN(wstr && buf, NULL);
41
42 len = WideCharToMultiByte(CP_ACP, 0, wstr, len, buf, buf_size, NULL, NULL);
43 buf[len] = '\0';
44 return buf;
45}
46