Ignore:
Timestamp:
Mar 19, 2001, 7:56:57 PM (24 years ago)
Author:
mike
Message:

Few Watcom fixes/updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/initdll.h

    r5305 r5331  
    1313#if (__IBMCPP__ == 300) || (__IBMC__ == 300)
    1414void _Optlink __ctordtorInit( void );
    15 #define ctordtorInit()  __ctordtorInit()
     15#define ctordtorInit()  __ctordtorInit()
    1616
    1717void _Optlink __ctordtorTerm( void );
    18 #define ctordtorTerm()  __ctordtorTerm()
     18#define ctordtorTerm()  __ctordtorTerm()
    1919
    2020#elif (__IBMCPP__ == 360) || (__IBMC__ == 360)
    2121void _Optlink __ctordtorInit( int flag );
    22 #define ctordtorInit()  __ctordtorInit(0)
     22#define ctordtorInit()  __ctordtorInit(0)
    2323
    2424void _Optlink __ctordtorTerm( int flag );
    25 #define ctordtorTerm()  __ctordtorTerm(0)
     25#define ctordtorTerm()  __ctordtorTerm(0)
    2626
    2727#else
     
    5656#define ctordtorTerm()
    5757
     58#ifdef __cplusplus
     59extern "C" {
     60//prevent Watcom from mucking with this name
     61extern DWORD _Resource_PEResTab;
     62#pragma aux _Resource_PEResTab "*";
     63}
     64#endif
     65
    5866#endif
    5967
Note: See TracChangeset for help on using the changeset viewer.