| 384 | static PyMethodDef* ApplicationMethods = nullptr; |
| 385 | |
| 386 | PyMODINIT_FUNC |
| 387 | init_freecad_module(void) |
| 388 | { |
| 389 | static struct PyModuleDef FreeCADModuleDef = { |
| 390 | PyModuleDef_HEAD_INIT, |
| 391 | "FreeCAD", FreeCAD_doc, -1, |
| 392 | ApplicationMethods, |
| 393 | nullptr, nullptr, nullptr, nullptr |
| 394 | }; |
| 395 | return PyModule_Create(&FreeCADModuleDef); |
| 396 | } |
| 397 | |
| 398 | PyMODINIT_FUNC |
| 399 | init_image_module() |
no outgoing calls
no test coverage detected