Changeset 3392
- Timestamp:
- Jun 10, 2007, 9:21:06 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/dev-lang/python/Include/pyport.h
r3225 r3392 595 595 596 596 BeOS and cygwin are the only other autoconf platform requiring special 597 linkage handling and both of these use __declspec(). 597 linkage handling and both of these use __declspec(). Ditto for OS/2. 598 598 */ 599 #if defined(__CYGWIN__) || defined(__BEOS__) 599 #if defined(__CYGWIN__) || defined(__BEOS__) || defined(__OS2__) 600 600 # define HAVE_DECLSPEC_DLL 601 601 #endif … … 609 609 /* module init functions inside the core need no external linkage */ 610 610 /* except for Cygwin to handle embedding (FIXME: BeOS too?) */ 611 # if defined(__CYGWIN__) 611 # if defined(__CYGWIN__) || defined(__OS2__) 612 612 # define PyMODINIT_FUNC __declspec(dllexport) void 613 613 # else /* __CYGWIN__ */
Note:
See TracChangeset
for help on using the changeset viewer.