[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / include / llvm / DebugInfo / PDB / PDB.h
blob6d734dc2f243ac40913195d111a4f25aa37f7fbe
1 //===- PDB.h - base header file for creating a PDB reader -------*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_PDB_H
10 #define LLVM_DEBUGINFO_PDB_PDB_H
12 #include "llvm/ADT/StringRef.h"
13 #include "llvm/DebugInfo/PDB/PDBTypes.h"
14 #include "llvm/Support/Error.h"
15 #include <memory>
17 namespace llvm {
18 namespace pdb {
20 class IPDBSession;
22 Error loadDataForPDB(PDB_ReaderType Type, StringRef Path,
23 std::unique_ptr<IPDBSession> &Session);
25 Error loadDataForEXE(PDB_ReaderType Type, StringRef Path,
26 std::unique_ptr<IPDBSession> &Session);
28 } // end namespace pdb
29 } // end namespace llvm
31 #endif // LLVM_DEBUGINFO_PDB_PDB_H