From 43466ec7b07de6bcad016bec60839cd6079c5a9c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 4 Dec 1998 18:48:25 +0000 Subject: Add DL_IMPORT(returntype) for all officially exported functions. --- Include/Python.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index e97fd6c6d2..9b72d0f8d0 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -41,6 +41,9 @@ PERFORMANCE OF THIS SOFTWARE. #ifndef DL_IMPORT /* declarations for DLL import/export */ #define DL_IMPORT(RTYPE) RTYPE #endif +#ifndef DL_EXPORT /* declarations for DLL import/export */ +#define DL_EXPORT(RTYPE) RTYPE +#endif #ifdef SYMANTEC__CFM68K__ #define UsingSharedLibs -- cgit v1.2.1