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 |
|
---|
36 |
|
---|
37 | BOOL WIN32API NTDLL_LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
|
---|
38 | extern DWORD ntdll_PEResTab;
|
---|
39 |
|
---|
40 | static HMODULE dllHandle = 0;
|
---|
41 |
|
---|
42 | //******************************************************************************
|
---|
43 | //******************************************************************************
|
---|
44 | ULONG APIENTRY inittermNTDLL(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 |
|
---|
55 | //Initialize kernel32 first (circular dependency between kernel32 & ntdll)
|
---|
56 | InitializeKernel32();
|
---|
57 |
|
---|
58 | CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/
|
---|
59 | dllHandle = RegisterLxDll(hModule, (WIN32DLLENTRY)NTDLL_LibMain, (PVOID)&ntdll_PEResTab,
|
---|
60 | 0, 0, 0);
|
---|
61 | if(dllHandle == 0)
|
---|
62 | return 0UL;
|
---|
63 |
|
---|
64 | dprintf(("ntdll init %s %s (%x)", __DATE__, __TIME__, inittermNTDLL));
|
---|
65 | break;
|
---|
66 | case 1 :
|
---|
67 | if(dllHandle) {
|
---|
68 | UnregisterLxDll(dllHandle);
|
---|
69 | }
|
---|
70 | break;
|
---|
71 | default :
|
---|
72 | return 0UL;
|
---|
73 | }
|
---|
74 |
|
---|
75 | /***********************************************************/
|
---|
76 | /* A non-zero value must be returned to indicate success. */
|
---|
77 | /***********************************************************/
|
---|
78 | return 1UL;
|
---|
79 | }
|
---|
80 | //******************************************************************************
|
---|
81 | //******************************************************************************
|
---|