Parity settings were not set properly in BuildCommDCBAndTimeouts()
[wine] / dlls / kernel / kernel_main.c
1 /*
2  * Kernel initialization code
3  */
4
5 #include "config.h"
6
7 #include <assert.h>
8 #include <ctype.h>
9 #include <string.h>
10
11 #include "winbase.h"
12
13 #include "wine/winbase16.h"
14 #include "callback.h"
15 #include "global.h"
16 #include "miscemu.h"
17 #include "module.h"
18 #include "task.h"
19
20 extern void CODEPAGE_Init(void);
21 extern BOOL RELAY_Init(void);
22 extern BOOL THUNK_Init(void);
23
24
25 /***********************************************************************
26  *           KERNEL process initialisation routine
27  */
28 static BOOL process_attach(void)
29 {
30     HMODULE16 hModule;
31
32     /* Setup codepage info */
33     CODEPAGE_Init();
34
35     /* Initialize relay entry points */
36     if (!RELAY_Init()) return FALSE;
37
38     /* Initialize thunking */
39     if (!THUNK_Init()) return FALSE;
40
41     /* Initialize DOS memory */
42     if (!DOSMEM_Init(0)) return FALSE;
43
44     if ((hModule = LoadLibrary16( "krnl386.exe" )) < 32) return FALSE;
45
46     /* Initialize special KERNEL entry points */
47
48     /* Initialize KERNEL.178 (__WINFLAGS) with the correct flags value */
49     NE_SetEntryPoint( hModule, 178, GetWinFlags16() );
50
51     /* Initialize KERNEL.454/455 (__FLATCS/__FLATDS) */
52     NE_SetEntryPoint( hModule, 454, __get_cs() );
53     NE_SetEntryPoint( hModule, 455, __get_ds() );
54
55     /* Initialize KERNEL.THHOOK */
56     TASK_InstallTHHook(MapSL((SEGPTR)GetProcAddress16( hModule, (LPCSTR)332 )));
57
58     /* Initialize the real-mode selector entry points */
59 #define SET_ENTRY_POINT( num, addr ) \
60     NE_SetEntryPoint( hModule, (num), GLOBAL_CreateBlock( GMEM_FIXED, \
61                       DOSMEM_MapDosToLinear(addr), 0x10000, hModule, \
62                       WINE_LDT_FLAGS_DATA ))
63
64     SET_ENTRY_POINT( 174, 0xa0000 );  /* KERNEL.174: __A000H */
65     SET_ENTRY_POINT( 181, 0xb0000 );  /* KERNEL.181: __B000H */
66     SET_ENTRY_POINT( 182, 0xb8000 );  /* KERNEL.182: __B800H */
67     SET_ENTRY_POINT( 195, 0xc0000 );  /* KERNEL.195: __C000H */
68     SET_ENTRY_POINT( 179, 0xd0000 );  /* KERNEL.179: __D000H */
69     SET_ENTRY_POINT( 190, 0xe0000 );  /* KERNEL.190: __E000H */
70     NE_SetEntryPoint( hModule, 183, DOSMEM_0000H );       /* KERNEL.183: __0000H */
71     NE_SetEntryPoint( hModule, 173, DOSMEM_BiosSysSeg );  /* KERNEL.173: __ROMBIOS */
72     NE_SetEntryPoint( hModule, 193, DOSMEM_BiosDataSeg ); /* KERNEL.193: __0040H */
73     NE_SetEntryPoint( hModule, 194, DOSMEM_BiosSysSeg );  /* KERNEL.194: __F000H */
74 #undef SET_ENTRY_POINT
75
76     /* Force loading of some dlls */
77     if (LoadLibrary16( "system" ) < 32) return FALSE;
78
79     /* Read DOS config.sys */
80     if (!DOSCONF_ReadConfig()) return FALSE;
81
82     /* Create 16-bit task */
83     TASK_CreateMainTask();
84
85     /* Create the shared heap for broken win95 native dlls */
86     HeapCreate( HEAP_SHARED, 0, 0 );
87
88     return TRUE;
89 }
90
91 /***********************************************************************
92  *           KERNEL initialisation routine
93  */
94 BOOL WINAPI MAIN_KernelInit( HINSTANCE hinst, DWORD reason, LPVOID reserved )
95 {
96     switch(reason)
97     {
98     case DLL_PROCESS_ATTACH:
99         return process_attach();
100     case DLL_PROCESS_DETACH:
101         WriteOutProfiles16();
102         break;
103     }
104     return TRUE;
105 }
106
107 /***********************************************************************
108  *              EnableDos (KERNEL.41)
109  *              DisableDos (KERNEL.42)
110  *              GetLastDiskChange (KERNEL.98)
111  *              ValidateCodeSegments (KERNEL.100)
112  *              KbdRst (KERNEL.123)
113  *              EnableKernel (KERNEL.124)
114  *              DisableKernel (KERNEL.125)
115  *              ValidateFreeSpaces (KERNEL.200)
116  *              K237 (KERNEL.237)
117  *              BUNNY_351 (KERNEL.351)
118  *              PIGLET_361 (KERNEL.361)
119  *
120  * Entry point for kernel functions that do nothing.
121  */
122 LONG WINAPI KERNEL_nop(void)
123 {
124     return 0;
125 }