| Line | |
|---|
| 1 | #ifndef __INITDLL_H__
|
|---|
| 2 | #define __INITDLL_H__
|
|---|
| 3 |
|
|---|
| 4 | #if (defined(__IBMCPP__) || defined(__IBMC__))
|
|---|
| 5 | #ifdef __cplusplus
|
|---|
| 6 | extern "C" {
|
|---|
| 7 | #endif
|
|---|
| 8 |
|
|---|
| 9 | void _Optlink __ctordtorInit( void );
|
|---|
| 10 | void _Optlink __ctordtorTerm( void );
|
|---|
| 11 |
|
|---|
| 12 | /*-------------------------------------------------------------------*/
|
|---|
| 13 | /* _CRT_init is the C run-time environment initialization function. */
|
|---|
| 14 | /* It will return 0 to indicate success and -1 to indicate failure. */
|
|---|
| 15 | /*-------------------------------------------------------------------*/
|
|---|
| 16 | int _Optlink _CRT_init(void);
|
|---|
| 17 |
|
|---|
| 18 | /*-------------------------------------------------------------------*/
|
|---|
| 19 | /* _CRT_term is the C run-time environment termination function. */
|
|---|
| 20 | /* It only needs to be called when the C run-time functions are */
|
|---|
| 21 | /* statically linked. */
|
|---|
| 22 | /*-------------------------------------------------------------------*/
|
|---|
| 23 | void _Optlink _CRT_term(void);
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 | #ifdef __cplusplus
|
|---|
| 27 | }
|
|---|
| 28 | #endif
|
|---|
| 29 |
|
|---|
| 30 | #endif
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 | #endif //__INITDLL_H__
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.