source: trunk/include/initdll.h@ 5129

Last change on this file since 5129 was 5129, checked in by sandervl, 25 years ago

* empty log message *

File size: 982 bytes
RevLine 
[5129]1#ifndef __INITDLL_H__
2#define __INITDLL_H__
3
4#if (defined(__IBMCPP__) || defined(__IBMC__))
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9void _Optlink __ctordtorInit( void );
10void _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/*-------------------------------------------------------------------*/
16int _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/*-------------------------------------------------------------------*/
23void _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.