2339ce94671a9abf75281b42afb02286d179d53f
[reactos.git] / reactos / boot / freeldr / freeldr / ui / gui.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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <freeldr.h>
21 #include <ui.h>
22 #include "gui.h"
23 #include <rtl.h>
24 #include <mm.h>
25 #include <debug.h>
26 #include <inifile.h>
27 #include <version.h>
28
29 VOID GuiDrawBackdrop(VOID)
30 {
31 }
32
33 VOID GuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR FillChar, UCHAR Attr /* Color Attributes */)
34 {
35 }
36
37 VOID GuiDrawShadow(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom)
38 {
39 }
40
41 VOID GuiDrawBox(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOL Fill, BOOL Shadow, UCHAR Attr)
42 {
43 }
44
45 VOID GuiDrawText(ULONG X, ULONG Y, PUCHAR Text, UCHAR Attr)
46 {
47 }
48
49 VOID GuiDrawStatusText(PCSTR StatusText)
50 {
51 }
52
53 VOID GuiUpdateDateTime(VOID)
54 {
55 }
56
57 VOID GuiSaveScreen(PUCHAR Buffer)
58 {
59 }
60
61 VOID GuiRestoreScreen(PUCHAR Buffer)
62 {
63 }
64
65 VOID GuiMessageBox(PCSTR MessageText)
66 {
67 }
68
69 VOID GuiMessageBoxCritical(PCSTR MessageText)
70 {
71 }
72
73 VOID GuiDrawProgressBar(ULONG Position, ULONG Range)
74 {
75 }
76
77 UCHAR GuiTextToColor(PCSTR ColorText)
78 {
79 return 0;
80 }
81
82 UCHAR GuiTextToFillStyle(PCSTR FillStyleText)
83 {
84 return 0;
85 }