]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / llvm-objcopy / COFF / COFFObjcopy.h
1 //===- COFFObjcopy.h --------------------------------------------*- C++ -*-===//
2 //
3 //                      The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_TOOLS_OBJCOPY_COFFOBJCOPY_H
11 #define LLVM_TOOLS_OBJCOPY_COFFOBJCOPY_H
12
13 namespace llvm {
14
15 namespace object {
16 class COFFObjectFile;
17 } // end namespace object
18
19 namespace objcopy {
20 struct CopyConfig;
21 class Buffer;
22
23 namespace coff {
24 void executeObjcopyOnBinary(const CopyConfig &Config,
25                             object::COFFObjectFile &In, Buffer &Out);
26
27 } // end namespace coff
28 } // end namespace objcopy
29 } // end namespace llvm
30
31 #endif // LLVM_TOOLS_OBJCOPY_COFFOBJCOPY_H