1/* pe-dll.h: Header file for routines used to build Windows DLLs.
2   Copyright 1999, 2000, 2001, 2002, 2003, 2007
3   Free Software Foundation, Inc.
4
5   This file is part of GLD, the Gnu Linker.
6
7   GLD is free software; you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation; either version 2, or (at your option)
10   any later version.
11
12   GLD is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with GLD; see the file COPYING.  If not, write to the Free
19   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20   02110-1301, USA.  */
21
22#ifndef PE_DLL_H
23#define PE_DLL_H
24
25#include "sysdep.h"
26#include "bfd.h"
27#include "bfdlink.h"
28#include "deffile.h"
29
30extern def_file *pe_def_file;
31extern int pe_dll_export_everything;
32extern int pe_dll_do_default_excludes;
33extern int pe_dll_kill_ats;
34extern int pe_dll_stdcall_aliases;
35extern int pe_dll_warn_dup_exports;
36extern int pe_dll_compat_implib;
37extern int pe_dll_extra_pe_debug;
38
39extern void pe_dll_id_target
40  (const char *);
41extern void pe_dll_add_excludes
42  (const char *, const int);
43extern void pe_dll_generate_def_file
44  (const char *);
45extern void pe_dll_generate_implib
46  (def_file *, const char *);
47extern void pe_process_import_defs
48  (bfd *, struct bfd_link_info *);
49extern bfd_boolean pe_implied_import_dll
50  (const char *);
51extern void pe_dll_build_sections
52  (bfd *, struct bfd_link_info *);
53extern void pe_exe_build_sections
54  (bfd *, struct bfd_link_info *);
55extern void pe_dll_fill_sections
56  (bfd *, struct bfd_link_info *);
57extern void pe_exe_fill_sections
58  (bfd *, struct bfd_link_info *);
59extern void pe_walk_relocs_of_symbol
60  (struct bfd_link_info *, const char *, int (*) (arelent *, asection *));
61extern void pe_create_import_fixup
62  (arelent * rel, asection *, int);
63extern bfd_boolean pe_bfd_is_dll
64  (bfd *);
65
66#endif /* PE_DLL_H */
67