- Timestamp:
- Oct 31, 2011, 9:26:26 PM (14 years ago)
- Location:
- branches/gcc-kmk
- Files:
-
- 2 edited
-
include/initdll.h (modified) (3 diffs)
-
src/initdll/initdll_default.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/include/initdll.h
r21733 r21769 10 10 11 11 #include <odin.h> 12 13 #ifndef MAYBE_WEAK 14 #define MAYBE_WEAK 15 #endif 12 16 13 17 /** … … 30 34 * @return Exit list order on success or -1 to indicate a failure. 31 35 */ 32 ULONG SYSTEM DLL_Init(ULONG hModule) ;36 ULONG SYSTEM DLL_Init(ULONG hModule) MAYBE_WEAK; 33 37 34 38 /** … … 43 47 * @param hModule DLL module handle. 44 48 */ 45 void SYSTEM DLL_Term(ULONG hModule) ;49 void SYSTEM DLL_Term(ULONG hModule) MAYBE_WEAK; 46 50 47 51 /** -
branches/gcc-kmk/src/initdll/initdll_default.cpp
r21733 r21769 8 8 #include <os2wrap.h> 9 9 10 #define MAYBE_WEAK __attribute__((weak)) 10 11 #include <initdll.h> 11 12
Note:
See TracChangeset
for help on using the changeset viewer.
