1999-09-12 17:27:48 +02:00
|
|
|
/* pe-dll.h: Header file for routines used to build Windows DLLs.
|
2017-01-02 04:36:43 +01:00
|
|
|
Copyright (C) 1999-2017 Free Software Foundation, Inc.
|
1999-09-12 17:27:48 +02:00
|
|
|
|
2007-07-06 16:09:45 +02:00
|
|
|
This file is part of the GNU Binutils.
|
1999-09-12 17:27:48 +02:00
|
|
|
|
2007-07-06 16:09:45 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
1999-09-12 17:27:48 +02:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-06 16:09:45 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-09-12 17:27:48 +02:00
|
|
|
|
2007-07-06 16:09:45 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
1999-09-12 17:27:48 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-06 16:09:45 +02:00
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-09-12 17:27:48 +02:00
|
|
|
|
|
|
|
#ifndef PE_DLL_H
|
|
|
|
#define PE_DLL_H
|
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "bfd.h"
|
1999-09-12 17:27:48 +02:00
|
|
|
#include "bfdlink.h"
|
|
|
|
#include "deffile.h"
|
|
|
|
|
|
|
|
extern def_file *pe_def_file;
|
|
|
|
extern int pe_dll_export_everything;
|
2009-10-16 17:15:39 +02:00
|
|
|
extern int pe_dll_exclude_all_symbols;
|
1999-09-12 17:27:48 +02:00
|
|
|
extern int pe_dll_do_default_excludes;
|
|
|
|
extern int pe_dll_kill_ats;
|
|
|
|
extern int pe_dll_stdcall_aliases;
|
2000-01-05 00:44:03 +01:00
|
|
|
extern int pe_dll_warn_dup_exports;
|
|
|
|
extern int pe_dll_compat_implib;
|
2001-08-03 01:12:02 +02:00
|
|
|
extern int pe_dll_extra_pe_debug;
|
2009-01-08 14:28:48 +01:00
|
|
|
extern int pe_use_nul_prefixed_import_tables;
|
2009-02-18 19:23:08 +01:00
|
|
|
extern int pe_use_coff_long_section_names;
|
2010-04-05 11:04:09 +02:00
|
|
|
extern int pe_leading_underscore;
|
1999-09-12 17:27:48 +02:00
|
|
|
|
2009-01-03 19:04:16 +01:00
|
|
|
typedef enum { EXCLUDESYMS, EXCLUDELIBS, EXCLUDEFORIMPLIB } exclude_type;
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_dll_id_target
|
2003-06-28 07:28:54 +02:00
|
|
|
(const char *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_dll_add_excludes
|
2009-01-03 19:04:16 +01:00
|
|
|
(const char *, const exclude_type);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_dll_generate_def_file
|
2003-06-28 07:28:54 +02:00
|
|
|
(const char *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_dll_generate_implib
|
2009-01-03 19:04:16 +01:00
|
|
|
(def_file *, const char *, struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_process_import_defs
|
2003-06-28 07:28:54 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean pe_implied_import_dll
|
2003-06-28 07:28:54 +02:00
|
|
|
(const char *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_dll_build_sections
|
2003-06-28 07:28:54 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_exe_build_sections
|
2003-06-28 07:28:54 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_dll_fill_sections
|
2003-06-28 07:28:54 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_exe_fill_sections
|
2003-06-28 07:28:54 +02:00
|
|
|
(bfd *, struct bfd_link_info *);
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_walk_relocs_of_symbol
|
2003-06-28 07:28:54 +02:00
|
|
|
(struct bfd_link_info *, const char *, int (*) (arelent *, asection *));
|
2002-11-30 09:39:46 +01:00
|
|
|
extern void pe_create_import_fixup
|
2008-11-14 16:13:05 +01:00
|
|
|
(arelent * rel, asection *, bfd_vma);
|
2006-12-18 23:38:53 +01:00
|
|
|
extern bfd_boolean pe_bfd_is_dll
|
|
|
|
(bfd *);
|
2009-02-18 19:23:08 +01:00
|
|
|
extern void pe_output_file_set_long_section_names
|
2009-10-16 17:15:39 +02:00
|
|
|
(bfd *);
|
2006-12-18 23:38:53 +01:00
|
|
|
|
1999-09-12 17:27:48 +02:00
|
|
|
#endif /* PE_DLL_H */
|