moduleobject.h 280 B

1234567891011121314151617
  1. /* Module object interface */
  2. #ifndef Py_MODULEOBJECT_H
  3. #define Py_MODULEOBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #include "cpyext_moduleobject.h"
  8. PyAPI_FUNC(PyObject *) PyModuleDef_Init(struct PyModuleDef*);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif /* !Py_MODULEOBJECT_H */