source: trunk/include/python2.4/moduleobject.h @ 490

Last change on this file since 490 was 88, checked in by cxsong, 19 years ago

copied from /opt/rappture/include

File size: 605 bytes
Line 
1
2/* Module object interface */
3
4#ifndef Py_MODULEOBJECT_H
5#define Py_MODULEOBJECT_H
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10PyAPI_DATA(PyTypeObject) PyModule_Type;
11
12#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
13#define PyModule_CheckExact(op) ((op)->ob_type == &PyModule_Type)
14
15PyAPI_FUNC(PyObject *) PyModule_New(char *);
16PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *);
17PyAPI_FUNC(char *) PyModule_GetName(PyObject *);
18PyAPI_FUNC(char *) PyModule_GetFilename(PyObject *);
19PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
20
21#ifdef __cplusplus
22}
23#endif
24#endif /* !Py_MODULEOBJECT_H */
Note: See TracBrowser for help on using the repository browser.