COFFObjcopy.h 923 B

123456789101112131415161718192021222324252627282930313233
  1. //===- COFFObjcopy.h --------------------------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef LLVM_TOOLS_OBJCOPY_COFFOBJCOPY_H
  9. #define LLVM_TOOLS_OBJCOPY_COFFOBJCOPY_H
  10. namespace llvm {
  11. class Error;
  12. class raw_ostream;
  13. namespace object {
  14. class COFFObjectFile;
  15. } // end namespace object
  16. namespace objcopy {
  17. struct CommonConfig;
  18. struct COFFConfig;
  19. namespace coff {
  20. Error executeObjcopyOnBinary(const CommonConfig &Config, const COFFConfig &,
  21. object::COFFObjectFile &In, raw_ostream &Out);
  22. } // end namespace coff
  23. } // end namespace objcopy
  24. } // end namespace llvm
  25. #endif // LLVM_TOOLS_OBJCOPY_COFFOBJCOPY_H