Files
clang-p2996/lld/lib/ReaderWriter/PECOFF/ReaderImportHeader.h
Rui Ueyama 0ca149fce9 Rename TargetInfo -> LinkingContext.
Also change some local variable names: "ti" -> "context" and
"_targetInfo" -> "_context".

Differential Revision: http://llvm-reviews.chandlerc.com/D1301

llvm-svn: 187823
2013-08-06 22:31:59 +00:00

35 lines
828 B
C++

//===- lib/ReaderWriter/PECOFF/ReaderImportHeader.h -----------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_PE_COFF_READER_IMPORT_HEADER_H
#define LLD_READER_WRITER_PE_COFF_READER_IMPORT_HEADER_H
#include <memory>
#include <vector>
namespace llvm {
class MemoryBuffer;
class error_code;
}
namespace lld {
class LinkingContext;
class File;
namespace coff {
llvm::error_code
parseCOFFImportLibrary(const LinkingContext &context,
std::unique_ptr<llvm::MemoryBuffer> &mb,
std::vector<std::unique_ptr<File> > &result);
}
}
#endif