Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
611 B

  1. /* Module object interface */
  2. #ifndef Py_MODULEOBJECT_H
  3. #define Py_MODULEOBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. PyAPI_DATA(PyTypeObject) PyModule_Type;
  8. #define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
  9. #define PyModule_CheckExact(op) ((op)->ob_type == &PyModule_Type)
  10. PyAPI_FUNC(PyObject *) PyModule_New(const char *);
  11. PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *);
  12. PyAPI_FUNC(char *) PyModule_GetName(PyObject *);
  13. PyAPI_FUNC(char *) PyModule_GetFilename(PyObject *);
  14. PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* !Py_MODULEOBJECT_H */