|
|
|||
File indexing completed on 2026-05-10 08:44:16
0001 //===- COFFObjcopy.h --------------------------------------------*- C++ -*-===// 0002 // 0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 0004 // See https://llvm.org/LICENSE.txt for license information. 0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 0006 // 0007 //===----------------------------------------------------------------------===// 0008 0009 #ifndef LLVM_OBJCOPY_COFF_COFFOBJCOPY_H 0010 #define LLVM_OBJCOPY_COFF_COFFOBJCOPY_H 0011 0012 namespace llvm { 0013 class Error; 0014 class raw_ostream; 0015 0016 namespace object { 0017 class COFFObjectFile; 0018 } // end namespace object 0019 0020 namespace objcopy { 0021 struct CommonConfig; 0022 struct COFFConfig; 0023 0024 namespace coff { 0025 0026 /// Apply the transformations described by \p Config and \p COFFConfig 0027 /// to \p In and writes the result into \p Out. 0028 /// \returns any Error encountered whilst performing the operation. 0029 Error executeObjcopyOnBinary(const CommonConfig &Config, const COFFConfig &, 0030 object::COFFObjectFile &In, raw_ostream &Out); 0031 0032 } // end namespace coff 0033 } // end namespace objcopy 0034 } // end namespace llvm 0035 0036 #endif // LLVM_OBJCOPY_COFF_COFFOBJCOPY_H
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|