1 | /*
|
---|
2 | * DLL entry point
|
---|
3 | *
|
---|
4 | * Copyright 1998 Sander van Leeuwen
|
---|
5 | * Copyright 1998 Peter Fitzsimmons
|
---|
6 | *
|
---|
7 | *
|
---|
8 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
9 | *
|
---|
10 | */
|
---|
11 |
|
---|
12 | /*-------------------------------------------------------------*/
|
---|
13 | /* INITERM.C -- Source for a custom dynamic link library */
|
---|
14 | /* initialization and termination (_DLL_InitTerm) */
|
---|
15 | /* function. */
|
---|
16 | /* */
|
---|
17 | /* When called to perform initialization, this sample function */
|
---|
18 | /* gets storage for an array of integers, and initializes its */
|
---|
19 | /* elements with random integers. At termination time, it */
|
---|
20 | /* frees the array. Substitute your own special processing. */
|
---|
21 | /*-------------------------------------------------------------*/
|
---|
22 |
|
---|
23 |
|
---|
24 | /* Include files */
|
---|
25 | #define INCL_DOSMODULEMGR
|
---|
26 | #define INCL_DOSPROCESS
|
---|
27 | #include <os2.h>
|
---|
28 | #include <stdlib.h>
|
---|
29 | #include <stdio.h>
|
---|
30 | #include <string.h>
|
---|
31 | #include <odin.h>
|
---|
32 | #include <misc.h> /*PLF Wed 98-03-18 23:18:15*/
|
---|
33 |
|
---|
34 | extern "C" {
|
---|
35 | /*-------------------------------------------------------------------*/
|
---|
36 | /* _CRT_init is the C run-time environment initialization function. */
|
---|
37 | /* It will return 0 to indicate success and -1 to indicate failure. */
|
---|
38 | /*-------------------------------------------------------------------*/
|
---|
39 | int CDECL CRT_init(void);
|
---|
40 | /*-------------------------------------------------------------------*/
|
---|
41 | /* _CRT_term is the C run-time environment termination function. */
|
---|
42 | /* It only needs to be called when the C run-time functions are */
|
---|
43 | /* statically linked. */
|
---|
44 | /*-------------------------------------------------------------------*/
|
---|
45 | void CDECL CRT_term(void);
|
---|
46 | void CDECL _ctordtorInit( void );
|
---|
47 | void CDECL _ctordtorTerm( void );
|
---|
48 | }
|
---|
49 |
|
---|
50 | /*-------------------------------------------------------------------*/
|
---|
51 | /* A clean up routine registered with DosExitList must be used if */
|
---|
52 | /* runtime calls are required and the runtime is dynamically linked. */
|
---|
53 | /* This will guarantee that this clean up routine is run before the */
|
---|
54 | /* library DLL is terminated. */
|
---|
55 | /*-------------------------------------------------------------------*/
|
---|
56 | static void APIENTRY cleanup(ULONG reason);
|
---|
57 |
|
---|
58 |
|
---|
59 | /****************************************************************************/
|
---|
60 | /* _DLL_InitTerm is the function that gets called by the operating system */
|
---|
61 | /* loader when it loads and frees this DLL for each process that accesses */
|
---|
62 | /* this DLL. However, it only gets called the first time the DLL is loaded */
|
---|
63 | /* and the last time it is freed for a particular process. The system */
|
---|
64 | /* linkage convention MUST be used because the operating system loader is */
|
---|
65 | /* calling this function. */
|
---|
66 | /****************************************************************************/
|
---|
67 | unsigned long SYSTEM _DLL_InitTerm(unsigned long hModule, unsigned long
|
---|
68 | ulFlag)
|
---|
69 | {
|
---|
70 | size_t i;
|
---|
71 | APIRET rc;
|
---|
72 |
|
---|
73 | /*-------------------------------------------------------------------------*/
|
---|
74 | /* If ulFlag is zero then the DLL is being loaded so initialization should */
|
---|
75 | /* be performed. If ulFlag is 1 then the DLL is being freed so */
|
---|
76 | /* termination should be performed. */
|
---|
77 | /*-------------------------------------------------------------------------*/
|
---|
78 |
|
---|
79 | switch (ulFlag) {
|
---|
80 | case 0 :
|
---|
81 |
|
---|
82 | /*******************************************************************/
|
---|
83 | /* The C run-time environment initialization function must be */
|
---|
84 | /* called before any calls to C run-time functions that are not */
|
---|
85 | /* inlined. */
|
---|
86 | /*******************************************************************/
|
---|
87 |
|
---|
88 | if (CRT_init() == -1)
|
---|
89 | return 0UL;
|
---|
90 | _ctordtorInit();
|
---|
91 |
|
---|
92 | CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/
|
---|
93 | /*******************************************************************/
|
---|
94 | /* A DosExitList routine must be used to clean up if runtime calls */
|
---|
95 | /* are required and the runtime is dynamically linked. */
|
---|
96 | /*******************************************************************/
|
---|
97 |
|
---|
98 | rc = DosExitList(0x0000FF00|EXLST_ADD, cleanup);
|
---|
99 | if(rc)
|
---|
100 | return 0UL;
|
---|
101 |
|
---|
102 | break;
|
---|
103 | case 1 :
|
---|
104 | break;
|
---|
105 | default :
|
---|
106 | return 0UL;
|
---|
107 | }
|
---|
108 |
|
---|
109 | /***********************************************************/
|
---|
110 | /* A non-zero value must be returned to indicate success. */
|
---|
111 | /***********************************************************/
|
---|
112 | return 1UL;
|
---|
113 | }
|
---|
114 |
|
---|
115 |
|
---|
116 | static void APIENTRY cleanup(ULONG ulReason)
|
---|
117 | {
|
---|
118 | _ctordtorTerm();
|
---|
119 | CRT_term();
|
---|
120 | DosExitList(EXLST_EXIT, cleanup);
|
---|
121 | return ;
|
---|
122 | }
|
---|