1 /* winduni.c -- unicode support for the windres program.
2 Copyright 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Cygnus Support.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 /* This file contains unicode support routines for the windres
23 program. Ideally, we would have generic unicode support which
24 would work on all systems. However, we don't. Instead, on a
25 Windows host, we are prepared to call some Windows routines. This
26 means that we will generate different output on Windows and Unix
27 hosts, but that seems better than not really supporting unicode at
33 #include "safe-ctype.h"
39 /* Convert an ASCII string to a unicode string. We just copy it,
40 expanding chars to shorts, rather than doing something intelligent. */
43 unicode_from_ascii (length
, unicode
, ascii
)
57 *unicode
= ((unichar
*) res_alloc ((len
+ 1) * sizeof (unichar
)));
60 /* FIXME: On Windows, we should be using MultiByteToWideChar to set
62 MultiByteToWideChar (CP_ACP
, 0, ascii
, len
+ 1, *unicode
, len
+ 1);
64 for (s
= ascii
, w
= *unicode
; *s
!= '\0'; s
++, w
++)
70 /* Print the unicode string UNICODE to the file E. LENGTH is the
71 number of characters to print, or -1 if we should print until the
72 end of the string. FIXME: On a Windows host, we should be calling
73 some Windows function, probably WideCharToMultiByte. */
76 unicode_print (e
, unicode
, length
)
78 const unichar
*unicode
;
92 if (ch
== 0 && length
< 0)
97 if ((ch
& 0x7f) == ch
)
101 else if (ISPRINT (ch
))
136 fprintf (e
, "\\%03o", (unsigned int) ch
);
141 else if ((ch
& 0xff) == ch
)
142 fprintf (e
, "\\%03o", (unsigned int) ch
);
144 fprintf (e
, "\\x%x", (unsigned int) ch
);