| 10 | |
| 11 | namespace LIEF::pdb::py { |
| 12 | void init(nb::module_& m) { |
| 13 | nb::module_ pdb = m.def_submodule("pdb"); |
| 14 | |
| 15 | pdb.def("load", &LIEF::pdb::load, |
| 16 | R"doc( |
| 17 | Load the PDB from the given path |
| 18 | )doc"_doc, "path"_a |
| 19 | ); |
| 20 | init_utils(m); |
| 21 | |
| 22 | create<LIEF::pdb::BuildMetadata>(pdb); |
| 23 | create<LIEF::pdb::Type>(pdb); |
| 24 | create<LIEF::pdb::DebugInfo>(pdb); |
| 25 | create<LIEF::pdb::PublicSymbol>(pdb); |
| 26 | create<LIEF::pdb::CompilationUnit>(pdb); |
| 27 | create<LIEF::pdb::Function>(pdb); |
| 28 | } |
| 29 | } |
nothing calls this directly
no test coverage detected