| 33 | namespace LIEF::COFF::py { |
| 34 | |
| 35 | void 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 | } |
nothing calls this directly
no test coverage detected