Don't write to inferior_ptid in corelow.c
[deliverable/binutils-gdb.git] / binutils / windint.h
index b46f857a7a860b8cf3cfd5353c7cf9239252f8b9..7ae5e2930b3a26985872b2a7a5743ebc1fbc8d09 100644 (file)
@@ -1,13 +1,12 @@
 /* windint.h -- internal header file for windres program.
 /* 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.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    Written by Kai Tietz, Onevision.
 
    This file is part of GNU Binutils.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
@@ -944,6 +943,18 @@ struct __attribute__ ((__packed__)) bin_fixed_versioninfo
 };
 #define BIN_FIXED_VERSIONINFO_SIZE 52
 
 };
 #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
 /* A list of variable version information.  */
 
 typedef struct rc_ver_info
@@ -957,10 +968,8 @@ typedef struct rc_ver_info
     /* StringFileInfo data.  */
     struct
     {
     /* StringFileInfo data.  */
     struct
     {
-      /* Language.  */
-      unichar *language;
-      /* Strings.  */
-      struct rc_ver_stringinfo *strings;
+      /* String tables.  */
+      struct rc_ver_stringtable *stringtables;
     } string;
     /* VarFileInfo data.  */
     struct
     } 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 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
 
 #endif
This page took 0.043364 seconds and 4 git commands to generate.