7c7ee14e02b935ccacd7103370354177f74697c6
[reactos.git] / reactos / boot / freeldr / freeldr / freeldr.c
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 /* INCLUDES *******************************************************************/
21
22 #include <freeldr.h>
23 #include <debug.h>
24
25 DBG_DEFAULT_CHANNEL(WARNING);
26
27 /* FUNCTIONS ******************************************************************/
28
29 VOID __cdecl BootMain(IN PCCH CmdLine)
30 {
31 CmdLineParse(CmdLine);
32 MachInit(CmdLine);
33 FsInit();
34
35 /* Debugger pre-initialization */
36 DebugInit(FALSE);
37
38 TRACE("BootMain() called.\n");
39
40 /* Check if the CPU is new enough */
41 FrLdrCheckCpuCompatiblity();
42
43 /* UI pre-initialization */
44 if (!UiInitialize(FALSE))
45 {
46 UiMessageBoxCritical("Unable to initialize UI.");
47 goto Quit;
48 }
49
50 if (!MmInitializeMemoryManager())
51 {
52 UiMessageBoxCritical("Unable to initialize memory manager.");
53 goto Quit;
54 }
55
56 #ifdef _M_IX86
57 HalpInitializePciStubs();
58 HalpInitBusHandler();
59 #endif
60
61 RunLoader();
62
63 Quit:
64 /* If we reach this point, something went wrong before, therefore reboot */
65 DiskStopFloppyMotor();
66 Reboot();
67 }
68
69 // We need to emulate these, because the original ones don't work in freeldr
70 // These functions are here, because they need to be in the main compilation unit
71 // and cannot be in a library.
72 int __cdecl wctomb(char *mbchar, wchar_t wchar)
73 {
74 *mbchar = (char)wchar;
75 return 1;
76 }
77
78 int __cdecl mbtowc(wchar_t *wchar, const char *mbchar, size_t count)
79 {
80 *wchar = (wchar_t)*mbchar;
81 return 1;
82 }
83
84 // The wctype table is 144 KB, too much for poor freeldr
85 int __cdecl iswctype(wint_t wc, wctype_t wctypeFlags)
86 {
87 return _isctype((char)wc, wctypeFlags);
88 }