Changeset 5331 for trunk/include/initdll.h
- Timestamp:
- Mar 19, 2001, 7:56:57 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/initdll.h
r5305 r5331 13 13 #if (__IBMCPP__ == 300) || (__IBMC__ == 300) 14 14 void _Optlink __ctordtorInit( void ); 15 #define ctordtorInit() 15 #define ctordtorInit() __ctordtorInit() 16 16 17 17 void _Optlink __ctordtorTerm( void ); 18 #define ctordtorTerm() 18 #define ctordtorTerm() __ctordtorTerm() 19 19 20 20 #elif (__IBMCPP__ == 360) || (__IBMC__ == 360) 21 21 void _Optlink __ctordtorInit( int flag ); 22 #define ctordtorInit() 22 #define ctordtorInit() __ctordtorInit(0) 23 23 24 24 void _Optlink __ctordtorTerm( int flag ); 25 #define ctordtorTerm() 25 #define ctordtorTerm() __ctordtorTerm(0) 26 26 27 27 #else … … 56 56 #define ctordtorTerm() 57 57 58 #ifdef __cplusplus 59 extern "C" { 60 //prevent Watcom from mucking with this name 61 extern DWORD _Resource_PEResTab; 62 #pragma aux _Resource_PEResTab "*"; 63 } 64 #endif 65 58 66 #endif 59 67
Note:
See TracChangeset
for help on using the changeset viewer.