[10005] | 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 | #include <windows.h>
|
---|
| 26 | #include <win32type.h>
|
---|
| 27 | #include <stdlib.h>
|
---|
| 28 | #include <stdio.h>
|
---|
| 29 | #include <string.h>
|
---|
| 30 | #include <odin.h>
|
---|
| 31 | #include <odinlx.h>
|
---|
| 32 | #include <misc.h> /*PLF Wed 98-03-18 23:18:15*/
|
---|
| 33 | #include <initdll.h>
|
---|
| 34 | #include <exitlist.h>
|
---|
| 35 | #include <os2sel.h>
|
---|
| 36 |
|
---|
| 37 | BOOL WIN32API MSVCRT_Init(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
|
---|
| 38 | extern DWORD msvcrt_PEResTab;
|
---|
| 39 |
|
---|
| 40 | static HMODULE dllHandle = 0;
|
---|
| 41 |
|
---|
| 42 | //******************************************************************************
|
---|
| 43 | //******************************************************************************
|
---|
| 44 | ULONG inittermMSVCRT(ULONG hModule, ULONG ulFlag)
|
---|
| 45 | {
|
---|
| 46 | /*-------------------------------------------------------------------------*/
|
---|
| 47 | /* If ulFlag is zero then the DLL is being loaded so initialization should */
|
---|
| 48 | /* be performed. If ulFlag is 1 then the DLL is being freed so */
|
---|
| 49 | /* termination should be performed. */
|
---|
| 50 | /*-------------------------------------------------------------------------*/
|
---|
| 51 |
|
---|
| 52 | switch (ulFlag) {
|
---|
| 53 | case 0 :
|
---|
| 54 | CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/
|
---|
| 55 | dllHandle = RegisterLxDll(hModule, (WIN32DLLENTRY)MSVCRT_Init, (PVOID)&msvcrt_PEResTab,0,0,0);
|
---|
| 56 | if(dllHandle == 0)
|
---|
| 57 | return 0UL;
|
---|
| 58 |
|
---|
| 59 | dprintf(("msvcrt init %s %s (%x)", __DATE__, __TIME__, inittermMSVCRT));
|
---|
| 60 |
|
---|
| 61 | break;
|
---|
| 62 | case 1 :
|
---|
| 63 | if(dllHandle) {
|
---|
| 64 | UnregisterLxDll(dllHandle);
|
---|
| 65 | }
|
---|
| 66 | break;
|
---|
| 67 | default :
|
---|
| 68 | return 0UL;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | /***********************************************************/
|
---|
| 72 | /* A non-zero value must be returned to indicate success. */
|
---|
| 73 | /***********************************************************/
|
---|
| 74 | return 1UL;
|
---|
| 75 | }
|
---|
| 76 | //******************************************************************************
|
---|
| 77 | //******************************************************************************
|
---|