Commit | Line | Data |
---|---|---|
99ad8390 NC |
1 | /* pep-dll.h: Header file for routines used to build Windows DLLs. |
2 | Copyright 2006 Free Software Foundation, Inc. | |
3 | ||
4 | This file is part of BFD, the Binary File Descriptor library. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2 of the License, or | |
9 | (at your option) any later version. | |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with this program; if not, write to the Free Software | |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | ||
20 | Written by Kai Tietz, OneVision Software GmbH&CoKg. */ | |
21 | ||
22 | #ifndef PEP_DLL_H | |
23 | #define PEP_DLL_H | |
24 | ||
25 | #include "bfd.h" | |
26 | #include "sysdep.h" | |
27 | #include "bfdlink.h" | |
28 | #include "deffile.h" | |
29 | ||
30 | extern def_file * pep_def_file; | |
31 | extern int pep_dll_export_everything; | |
32 | extern int pep_dll_do_default_excludes; | |
33 | extern int pep_dll_kill_ats; | |
34 | extern int pep_dll_stdcall_aliases; | |
35 | extern int pep_dll_warn_dup_exports; | |
36 | extern int pep_dll_compat_implib; | |
37 | extern int pep_dll_extra_pe_debug; | |
38 | ||
39 | extern void pep_dll_id_target (const char *); | |
40 | extern void pep_dll_add_excludes (const char *, const int); | |
41 | extern void pep_dll_generate_def_file (const char *); | |
42 | extern void pep_dll_generate_implib (def_file *, const char *); | |
43 | extern void pep_process_import_defs (bfd *, struct bfd_link_info *); | |
44 | extern bfd_boolean pep_implied_import_dll (const char *); | |
45 | extern void pep_dll_build_sections (bfd *, struct bfd_link_info *); | |
46 | extern void pep_exe_build_sections (bfd *, struct bfd_link_info *); | |
47 | extern void pep_dll_fill_sections (bfd *, struct bfd_link_info *); | |
48 | extern void pep_exe_fill_sections (bfd *, struct bfd_link_info *); | |
49 | extern void pep_walk_relocs_of_symbol | |
50 | (struct bfd_link_info *, const char *, int (*) (arelent *, asection *)); | |
51 | extern void pep_create_import_fixup (arelent * rel, asection *, int); | |
52 | ||
53 | #endif /* PEP_DLL_H */ |