
Go to the source code of this file.
Macros | |
| #define | PY_APPEND_INIT(module) PyImport_AppendInittab("." #module, init ## module) |
| #define | PY_IMPORT(module) init ## module(); |
| #define | PY_APPEND_INIT_OR_IMPORT(module, do_import) if (do_import) { PY_IMPORT(module); } else { PY_APPEND_INIT(module); } |
Functions | |
| static void | vtkpythonmodules_load () |
| #define PY_APPEND_INIT | ( | module | ) | PyImport_AppendInittab("." #module, init ## module) |
Definition at line 4 of file vtkpythonmodules.h.
| #define PY_IMPORT | ( | module | ) | init ## module(); |
Definition at line 5 of file vtkpythonmodules.h.
| #define PY_APPEND_INIT_OR_IMPORT | ( | module, | |
| do_import | |||
| ) | if (do_import) { PY_IMPORT(module); } else { PY_APPEND_INIT(module); } |
Definition at line 14 of file vtkpythonmodules.h.
|
static |
Definition at line 17 of file vtkpythonmodules.h.
1.8.13 on Tue May 18 2021