Skip to content

Commit 43466ec

Browse files
committed
Add DL_IMPORT(returntype) for all officially exported functions.
1 parent b241b67 commit 43466ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+403
-400
lines changed

Include/Python.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ PERFORMANCE OF THIS SOFTWARE.
4141
#ifndef DL_IMPORT /* declarations for DLL import/export */
4242
#define DL_IMPORT(RTYPE) RTYPE
4343
#endif
44+
#ifndef DL_EXPORT /* declarations for DLL import/export */
45+
#define DL_EXPORT(RTYPE) RTYPE
46+
#endif
4447

4548
#ifdef SYMANTEC__CFM68K__
4649
#define UsingSharedLibs

0 commit comments

Comments
 (0)