1  /* windres.h -- header file for windres program.
       2     Copyright (C) 1997-2023 Free Software Foundation, Inc.
       3     Written by Ian Lance Taylor, Cygnus Support.
       4     Rewritten by Kai Tietz, Onevision.
       5  
       6     This file is part of GNU Binutils.
       7  
       8     This program is free software; you can redistribute it and/or modify
       9     it under the terms of the GNU General Public License as published by
      10     the Free Software Foundation; either version 3 of the License, or
      11     (at your option) any later version.
      12  
      13     This program is distributed in the hope that it will be useful,
      14     but WITHOUT ANY WARRANTY; without even the implied warranty of
      15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      16     GNU General Public License for more details.
      17  
      18     You should have received a copy of the GNU General Public License
      19     along with this program; if not, write to the Free Software
      20     Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
      21     02110-1301, USA.  */
      22  
      23  #include "ansidecl.h"
      24  
      25  /* This is the header file for the windres program.  It defines
      26     structures and declares functions used within the program.  */
      27  
      28  #include "winduni.h"
      29  #include "windint.h"
      30  
      31  extern int verbose;
      32  
      33  /* Function declarations.  */
      34  
      35  extern rc_res_directory *read_rc_file (const char *, const char *, const char *, int, int);
      36  extern rc_res_directory *read_res_file (const char *);
      37  extern rc_res_directory *read_coff_rsrc (const char *, const char *);
      38  extern void write_rc_file (const char *, const rc_res_directory *);
      39  extern void write_res_file (const char *, const rc_res_directory *);
      40  extern void write_coff_file (const char *, const char *, const rc_res_directory *);
      41  
      42  extern rc_res_resource *bin_to_res (windres_bfd *, rc_res_id, const bfd_byte *,
      43  				    rc_uint_type);
      44  extern rc_uint_type res_to_bin (windres_bfd *, rc_uint_type, const rc_res_resource *);
      45  
      46  extern FILE *open_file_search (const char *, const char *, const char *, char **);
      47  
      48  extern void *res_alloc (rc_uint_type);
      49  extern void *reswr_alloc (rc_uint_type);
      50  
      51  /* Resource ID handling.  */
      52  
      53  extern int res_id_cmp (rc_res_id, rc_res_id);
      54  extern void res_id_print (FILE *, rc_res_id, int);
      55  extern void res_ids_print (FILE *, int, const rc_res_id *);
      56  extern void res_string_to_id (rc_res_id *, const char *);
      57  extern void res_unistring_to_id (rc_res_id *, const unichar *);
      58  
      59  /* Manipulation of the resource tree.  */
      60  
      61  extern rc_res_resource *define_resource (rc_res_directory **, int, const rc_res_id *,
      62  					 int);
      63  extern rc_res_resource *define_standard_resource (rc_res_directory **, int, rc_res_id,
      64  						  rc_uint_type, int);
      65  
      66  extern int extended_dialog (const rc_dialog *);
      67  extern int extended_menu (const rc_menu *);
      68  
      69  /* Communication between the rc file support and the parser and lexer.  */
      70  
      71  extern int yydebug;
      72  extern char *rc_filename;
      73  extern int rc_lineno;
      74  
      75  extern int yyparse (void);
      76  extern int yylex (void);
      77  extern void yyerror (const char *);
      78  extern void rcparse_warning (const char *);
      79  extern void rcparse_set_language (int);
      80  extern void rcparse_discard_strings (void);
      81  extern void rcparse_rcdata (void);
      82  extern void rcparse_normal (void);
      83  
      84  extern void define_accelerator (rc_res_id, const rc_res_res_info *, rc_accelerator *);
      85  extern void define_bitmap (rc_res_id, const rc_res_res_info *, const char *);
      86  extern void define_cursor (rc_res_id, const rc_res_res_info *, const char *);
      87  extern void define_dialog (rc_res_id, const rc_res_res_info *, const rc_dialog *);
      88  extern rc_dialog_control *define_control (const rc_res_id, rc_uint_type, rc_uint_type,
      89  					  rc_uint_type, rc_uint_type, rc_uint_type,
      90  					  const rc_res_id, rc_uint_type, rc_uint_type);
      91  extern rc_dialog_control *define_icon_control (rc_res_id, rc_uint_type, rc_uint_type,
      92  					       rc_uint_type, rc_uint_type, rc_uint_type,
      93  					       rc_uint_type, rc_rcdata_item *,
      94  					       rc_dialog_ex *);
      95  extern void define_font (rc_res_id, const rc_res_res_info *, const char *);
      96  extern void define_icon (rc_res_id, const rc_res_res_info *, const char *);
      97  extern void define_menu (rc_res_id, const rc_res_res_info *, rc_menuitem *);
      98  extern rc_menuitem *define_menuitem (const unichar *, rc_uint_type, rc_uint_type,
      99  				     rc_uint_type, rc_uint_type, rc_menuitem *);
     100  extern void define_messagetable (rc_res_id, const rc_res_res_info *, const char *);
     101  extern void define_rcdata (rc_res_id, const rc_res_res_info *, rc_rcdata_item *);
     102  extern void define_rcdata_file  (rc_res_id, const rc_res_res_info *, const char *);
     103  extern rc_rcdata_item *define_rcdata_string (const char *, rc_uint_type);
     104  extern rc_rcdata_item *define_rcdata_unistring (const unichar *, rc_uint_type);
     105  extern rc_rcdata_item *define_rcdata_number (rc_uint_type, int);
     106  extern void define_stringtable (const rc_res_res_info *, rc_uint_type, const unichar *, int);
     107  extern void define_user_data (rc_res_id, rc_res_id, const rc_res_res_info *, rc_rcdata_item *);
     108  extern void define_toolbar (rc_res_id, rc_res_res_info *, rc_uint_type ,rc_uint_type ,rc_toolbar_item *);
     109  extern void define_user_file (rc_res_id, rc_res_id, const rc_res_res_info *, const char *);
     110  extern void define_versioninfo (rc_res_id, rc_uint_type, rc_fixed_versioninfo *, rc_ver_info *);
     111  extern rc_ver_info *append_ver_stringfileinfo (rc_ver_info *, rc_ver_stringtable *);
     112  extern rc_ver_stringtable *append_ver_stringtable (rc_ver_stringtable *, const char *, rc_ver_stringinfo *);
     113  extern rc_ver_info *append_ver_varfileinfo (rc_ver_info *, const unichar *, rc_ver_varinfo *);
     114  extern rc_ver_stringinfo *append_verval (rc_ver_stringinfo *, const unichar *, const unichar *);
     115  extern rc_ver_varinfo *append_vertrans (rc_ver_varinfo *, rc_uint_type, rc_uint_type);
     116  
     117  extern bfd *windres_open_as_binary (const char *, int);
     118  extern void windres_add_include_dir (const char *);
     119  
     120  extern int wr_printcomment (FILE *, const char *, ...);
     121  extern int wr_print (FILE *, const char *, ...);
     122  #define wr_print_flush(FP)  wr_print ((FP),NULL)