summaryrefslogtreecommitdiffstats
path: root/Include/accessobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-18 16:18:13 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-18 16:18:13 (GMT)
commite89bc75048d0142859379b2b92e77d984fdbef6e (patch)
tree59cc70e5004568e03a371b088109b2330d03698c /Include/accessobject.h
parent14aa5da824a398fad7403510f7b49e724f862e23 (diff)
downloadcpython-e89bc75048d0142859379b2b92e77d984fdbef6e.zip
cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.gz
cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.bz2
Changes for dynamic linking under NT
Diffstat (limited to 'Include/accessobject.h')
-rw-r--r--Include/accessobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/accessobject.h b/Include/accessobject.h
index fd8c2e9..5619308 100644
--- a/Include/accessobject.h
+++ b/Include/accessobject.h
@@ -46,7 +46,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define AC_R_PUBLIC 0004
#define AC_W_PUBLIC 0002
-extern typeobject Accesstype;
+extern DL_IMPORT typeobject Accesstype;
#define is_accessobject(v) ((v)->ob_type == &Accesstype)
@@ -58,7 +58,7 @@ void setaccessowner PROTO((object *, object *));
object *cloneaccessobject PROTO((object *));
int hasaccessvalue PROTO((object *));
-extern typeobject Anynumbertype, Anysequencetype, Anymappingtype;
+extern DL_IMPORT typeobject Anynumbertype, Anysequencetype, Anymappingtype;
#ifdef __cplusplus
}