MCPcopy Create free account
hub / github.com/lief-project/LIEF / init

Function init

api/python/src/COFF/init.cpp:35–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33namespace LIEF::COFF::py {
34
35void init(nb::module_& m) {
36 nb::module_ coff_mod = m.def_submodule("COFF", "Python API for the COFF format");
37 init_utils(coff_mod);
38
39 create<Header>(coff_mod);
40 create<Binary>(coff_mod);
41 create<ParserConfig>(coff_mod);
42 create<Parser>(coff_mod);
43 create<String>(coff_mod);
44 create<Symbol>(coff_mod);
45 create<Section>(coff_mod);
46 create<Relocation>(coff_mod);
47 create<AuxiliarySymbol>(coff_mod);
48}
49}

Callers

nothing calls this directly

Calls 1

init_utilsFunction · 0.70

Tested by

no test coverage detected