1 /* winduni.c -- unicode support for the windres program.
2 Copyright 1997, 1998 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
40 /* Convert an ASCII string to a unicode string. We just copy it,
41 expanding chars to shorts, rather than doing something intelligent. */
44 unicode_from_ascii (length
, unicode
, ascii
)
58 *unicode
= ((unichar
*) res_alloc ((len
+ 1) * sizeof (unichar
)));
61 /* FIXME: On Windows, we should be using MultiByteToWideChar to set
63 MultiByteToWideChar (CP_ACP
, 0, ascii
, len
+ 1, *unicode
, len
+ 1);
65 for (s
= ascii
, w
= *unicode
; *s
!= '\0'; s
++, w
++)
71 /* Print the unicode string UNICODE to the file E. LENGTH is the
72 number of characters to print, or -1 if we should print until the
73 end of the string. FIXME: On a Windows host, we should be calling
74 some Windows function, probably WideCharToMultiByte. */
77 unicode_print (e
, unicode
, length
)
79 const unichar
*unicode
;
93 if (ch
== 0 && length
< 0)
98 if ((ch
& 0x7f) == ch
)
102 else if (isprint (ch
))
137 fprintf (e
, "\\%03o", (unsigned int) ch
);
142 else if ((ch
& 0xff) == ch
)
143 fprintf (e
, "\\%03o", (unsigned int) ch
);
145 fprintf (e
, "\\x%x", (unsigned int) ch
);
This page took 0.033078 seconds and 4 git commands to generate.