summaryrefslogtreecommitdiff
path: root/Include/moduleobject.h
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
committerMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
commit81ef4c697a0af6c88625d468535f5209069756cf (patch)
tree6913a658d62df8cff4cc8bbdd169a86b7fdece49 /Include/moduleobject.h
parentad33186082cc314513662b8423ed68de7019a302 (diff)
downloadcpython-81ef4c697a0af6c88625d468535f5209069756cf.tar.gz
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/moduleobject.h')
-rw-r--r--Include/moduleobject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index 533567c3da..0f67da3ccd 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -7,16 +7,16 @@
extern "C" {
#endif
-extern DL_IMPORT(PyTypeObject) PyModule_Type;
+PyAPI_DATA(PyTypeObject) PyModule_Type;
#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
#define PyModule_CheckExact(op) ((op)->ob_type == &PyModule_Type)
-extern DL_IMPORT(PyObject *) PyModule_New(char *);
-extern DL_IMPORT(PyObject *) PyModule_GetDict(PyObject *);
-extern DL_IMPORT(char *) PyModule_GetName(PyObject *);
-extern DL_IMPORT(char *) PyModule_GetFilename(PyObject *);
-extern DL_IMPORT(void) _PyModule_Clear(PyObject *);
+PyAPI_FUNC(PyObject *) PyModule_New(char *);
+PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *);
+PyAPI_FUNC(char *) PyModule_GetName(PyObject *);
+PyAPI_FUNC(char *) PyModule_GetFilename(PyObject *);
+PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
#ifdef __cplusplus
}