diff options
author | Guido van Rossum <guido@python.org> | 1994-08-18 16:18:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-18 16:18:13 (GMT) |
commit | e89bc75048d0142859379b2b92e77d984fdbef6e (patch) | |
tree | 59cc70e5004568e03a371b088109b2330d03698c /Include/object.h | |
parent | 14aa5da824a398fad7403510f7b49e724f862e23 (diff) | |
download | cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.zip cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.gz cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.bz2 |
Changes for dynamic linking under NT
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/object.h b/Include/object.h index cf10ec5..e419567 100644 --- a/Include/object.h +++ b/Include/object.h @@ -227,7 +227,7 @@ typedef struct _typeobject { #endif } typeobject; -extern typeobject Typetype; /* The type of type objects */ +extern DL_IMPORT typeobject Typetype; /* The type of type objects */ #define is_typeobject(op) ((op)->ob_type == &Typetype) @@ -341,7 +341,7 @@ where NULL (nil) is not suitable (since NULL often means 'error'). Don't forget to apply INCREF() when returning this value!!! */ -extern object NoObject; /* Don't use this directly */ +extern DL_IMPORT object NoObject; /* Don't use this directly */ #define None (&NoObject) |