X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=binutils%2Fwindint.h;h=7ae5e2930b3a26985872b2a7a5743ebc1fbc8d09;hb=60db1b8565060f4bd2287b060ea9724c93289982;hp=7093fd1fde856ddce286ab35612e30cc85b8b6a2;hpb=32866df75ece22ec1fd88e99e3c5effe9238e072;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/windint.h b/binutils/windint.h index 7093fd1fde..7ae5e2930b 100644 --- a/binutils/windint.h +++ b/binutils/windint.h @@ -1,6 +1,5 @@ /* windint.h -- internal header file for windres program. - Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007 - Free Software Foundation, Inc. + Copyright (C) 1997-2020 Free Software Foundation, Inc. Written by Kai Tietz, Onevision. This file is part of GNU Binutils. @@ -944,6 +943,18 @@ struct __attribute__ ((__packed__)) bin_fixed_versioninfo }; #define BIN_FIXED_VERSIONINFO_SIZE 52 +/* A list of string version information. */ + +typedef struct rc_ver_stringtable +{ + /* Next item. */ + struct rc_ver_stringtable *next; + /* Language. */ + unichar *language; + /* Strings. */ + struct rc_ver_stringinfo *strings; +} rc_ver_stringtable; + /* A list of variable version information. */ typedef struct rc_ver_info @@ -957,10 +968,8 @@ typedef struct rc_ver_info /* StringFileInfo data. */ struct { - /* Language. */ - unichar *language; - /* Strings. */ - struct rc_ver_stringinfo *strings; + /* String tables. */ + struct rc_ver_stringtable *stringtables; } string; /* VarFileInfo data. */ struct @@ -1083,6 +1092,6 @@ extern rc_uint_type windres_get_16 (windres_bfd *, const void *, rc_uint_type); extern rc_uint_type windres_get_32 (windres_bfd *, const void *, rc_uint_type); extern void set_windres_bfd (windres_bfd *, bfd *, asection *, rc_uint_type); -extern void set_windres_bfd_endianess (windres_bfd *, int); +extern void set_windres_bfd_endianness (windres_bfd *, int); #endif