diff options
Diffstat (limited to 'binutils/windint.h')
-rw-r--r-- | binutils/windint.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/binutils/windint.h b/binutils/windint.h index eed8f79..0a75899 100644 --- a/binutils/windint.h +++ b/binutils/windint.h @@ -944,6 +944,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 +969,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 |