Set default LANGUAGE to english/us.

This commit is contained in:
Nick Clifton 2002-04-09 16:55:48 +00:00
parent 5bcd00a60a
commit f7d63484de
9 changed files with 33 additions and 6 deletions

View file

@ -12,7 +12,9 @@
* resrc.c: Print style even if it is 0.
* resbin.c: Use signature to identify DIALOGEX.
* windres.c: Set default LANGUAGE to english/us.
2002-04-09 Gunnar Degnbol <degnbol@danbbs.dk>
* resrc.c: print CLASS names in quotes

View file

@ -1,5 +1,13 @@
2002-04-09 Nick Clifton <nickc@cambridge.redhat.com>
* binutils-all/windres/deflang.rc: New test case: Check default
language.
* binutils-all/windres/deflang.rsd: Expected output.
* binutils-all/windres/dialogsignature.rc: New test case for
decoding the dialog signature.
* binutils-all/windres/dialogsignature.rsd: Expected output.
* binutils-all/windres/escapea.rc: New test case for encoding \a
escape sequence.
* binutils-all/windres/escapea.rsd: Expected output.

View file

@ -0,0 +1,4 @@
101 DIALOG DISCARDABLE 0, 0, 186, 95
BEGIN
DEFPUSHBUTTON "OK",1,129,7,50,14
END

View file

@ -0,0 +1,8 @@
0000 00000000 20000000 ffff0000 ffff0000 .... ...........
0010 00000000 00000000 00000000 00000000 ................
0020 36000000 20000000 ffff0500 ffff6500 6... .........e.
0030 00000000 10100904 00000000 00000000 ................
0040 00008880 00000000 01000000 0000ba00 ................
0050 5f000000 00000000 01000150 00000000 _..........P....
0060 81000700 32000e00 0100ffff 80004f00 ....2.........O.
0070 4b000000 00000000 K.......

View file

@ -1,7 +1,7 @@
0000 00000000 20000000 ffff0000 ffff0000 .... ...........
0010 00000000 00000000 00000000 00000000 ................
0020 36000000 20000000 ffff0500 ffff6500 6... .........e.
0030 00000000 10100000 00000000 00000000 ................
0030 00000000 10100904 00000000 00000000 ................
0040 01000000 00000000 01000000 0000ba00 ................
0050 5f000000 00000000 01000150 00000000 _..........P....
0060 81000700 32000e00 0100ffff 80004f00 ....2.........O.

View file

@ -1,7 +1,7 @@
0000 00000000 20000000 ffff0000 ffff0000 .... ...........
0010 00000000 00000000 00000000 00000000 ................
0020 28000000 20000000 ffff0400 ffff1400 (... ...........
0030 00000000 10100000 00000000 00000000 ................
0030 00000000 10100904 00000000 00000000 ................
0040 00000000 90002600 46006900 6c006500 ......&.F.i.l.e.
0050 00008000 11002600 4f007000 65006e00 ......&.O.p.e.n.
0060 08005e00 4f000000 ..^.O...

View file

@ -1,7 +1,7 @@
0000 00000000 20000000 ffff0000 ffff0000 .... ...........
0010 00000000 00000000 00000000 00000000 ................
0020 34000000 20000000 ffff0500 ffff6500 4... .........e.
0030 00000000 10100000 00000000 00000000 ................
0030 00000000 10100904 00000000 00000000 ................
0040 00008880 00000000 01000000 0000ba00 ................
0050 5f000000 00000000 00000250 00000000 _..........P....
0060 17002e00 1c000800 ffffffff 8200b000 ................

View file

@ -1,7 +1,7 @@
0000 00000000 20000000 ffff0000 ffff0000 .... ...........
0010 00000000 00000000 00000000 00000000 ................
0020 36000000 20000000 ffff0500 ffff6500 6... .........e.
0030 00000000 10100000 00000000 00000000 ................
0030 00000000 10100904 00000000 00000000 ................
0040 00000000 00000000 01000000 0000ba00 ................
0050 5f000000 00000000 01000150 00000000 _..........P....
0060 81000700 32000e00 0100ffff 80004f00 ....2.........O.

View file

@ -145,6 +145,8 @@ static enum res_format format_from_filename PARAMS ((const char *, int));
static void usage PARAMS ((FILE *, int));
static int cmp_res_entry PARAMS ((const PTR, const PTR));
static struct res_directory *sort_resources PARAMS ((struct res_directory *));
static void reswr_init PARAMS ((void));
static const char * quot PARAMS ((const char *));
/* When we are building a resource tree, we allocate everything onto
an obstack, so that we can free it all at once if we want. */
@ -765,6 +767,9 @@ quot (string)
return buf;
}
/* This keeps gcc happy when using -Wmissing-prototypes -Wstrict-prototypes. */
int main PARAMS ((int, char **));
/* The main function. */
int
@ -809,7 +814,7 @@ main (argc, argv)
target = NULL;
preprocessor = NULL;
preprocargs = NULL;
language = -1;
language = 0x409; /* LANG_ENGLISH, SUBLANG_ENGLISH_US. */
use_temp_file = 0;
while ((c = getopt_long (argc, argv, "i:o:I:O:F:D:hHvV", long_options,