pep-dll.c 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Routines to help build PEPI-format DLLs (Win64 etc)
  2. Copyright (C) 2006-2022 Free Software Foundation, Inc.
  3. Written by Kai Tietz, OneVision Software GmbH&CoKg.
  4. This file is part of the GNU Binutils.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  16. MA 02110-1301, USA. */
  17. #define COFF_IMAGE_WITH_PE
  18. #define COFF_WITH_PE
  19. #define COFF_WITH_pex64
  20. /* Local defined globals. */
  21. #define pe_def_file pep_def_file
  22. #define pe_details pep_details
  23. #define pe_dll_compat_implib pep_dll_compat_implib
  24. #define pe_dll_extra_pe_debug pep_dll_extra_pe_debug
  25. #define pe_dll_export_everything pep_dll_export_everything
  26. #define pe_dll_exclude_all_symbols pep_dll_exclude_all_symbols
  27. #define pe_dll_do_default_excludes pep_dll_do_default_excludes
  28. #define pe_dll_kill_ats pep_dll_kill_ats
  29. #define pe_dll_stdcall_aliases pep_dll_stdcall_aliases
  30. #define pe_dll_warn_dup_exports pep_dll_warn_dup_exports
  31. #define pe_use_nul_prefixed_import_tables \
  32. pep_use_nul_prefixed_import_tables
  33. #define pe_use_coff_long_section_names \
  34. pep_use_coff_long_section_names
  35. #define pe_leading_underscore pep_leading_underscore
  36. #define pe_dll_enable_reloc_section pep_dll_enable_reloc_section
  37. /* Unique global name for functions to avoid double defined symbols. */
  38. #define pe_find_data_imports pep_find_data_imports
  39. #define pe_create_import_fixup pep_create_import_fixup
  40. #define pe_dll_generate_def_file pep_dll_generate_def_file
  41. #define pe_process_import_defs pep_process_import_defs
  42. #define pe_dll_id_target pep_dll_id_target
  43. #define pe_implied_import_dll pep_implied_import_dll
  44. #define pe_dll_build_sections pep_dll_build_sections
  45. #define pe_exe_build_sections pep_exe_build_sections
  46. #define pe_dll_fill_sections pep_dll_fill_sections
  47. #define pe_exe_fill_sections pep_exe_fill_sections
  48. #define pe_dll_generate_implib pep_dll_generate_implib
  49. #define pe_dll_add_excludes pep_dll_add_excludes
  50. #define pe_bfd_is_dll pep_bfd_is_dll
  51. #define pe_output_file_set_long_section_names \
  52. pep_output_file_set_long_section_names
  53. /* Uses x86_64 PE+. */
  54. #define pe_use_x86_64
  55. #include "pe-dll.c"