- Update address of Free Software Foundation.
[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 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 #include <freeldr.h>
21
22 VOID GuiDrawBackdrop(VOID)
23 {
24 }
25
26 VOID GuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR FillChar, UCHAR Attr /* Color Attributes */)
27 {
28 }
29
30 VOID GuiDrawShadow(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom)
31 {
32 }
33
34 VOID GuiDrawBox(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr)
35 {
36 }
37
38 VOID GuiDrawText(ULONG X, ULONG Y, PUCHAR Text, UCHAR Attr)
39 {
40 }
41
42 VOID GuiDrawStatusText(PCSTR StatusText)
43 {
44 }
45
46 VOID GuiUpdateDateTime(VOID)
47 {
48 }
49
50 VOID GuiSaveScreen(PUCHAR Buffer)
51 {
52 }
53
54 VOID GuiRestoreScreen(PUCHAR Buffer)
55 {
56 }
57
58 VOID GuiMessageBox(PCSTR MessageText)
59 {
60 }
61
62 VOID GuiMessageBoxCritical(PCSTR MessageText)
63 {
64 }
65
66 VOID GuiDrawProgressBar(ULONG Position, ULONG Range)
67 {
68 }
69
70 UCHAR GuiTextToColor(PCSTR ColorText)
71 {
72 return 0;
73 }
74
75 UCHAR GuiTextToFillStyle(PCSTR FillStyleText)
76 {
77 return 0;
78 }
79
80 const UIVTBL GuiVtbl =
81 {
82 /*GuiInitialize,
83 GuiUnInitialize,
84 GuiDrawBackdrop,
85 GuiFillArea,
86 GuiDrawShadow,
87 GuiDrawBox,
88 GuiDrawText,
89 GuiDrawCenteredText,
90 GuiDrawStatusText,
91 GuiUpdateDateTime,
92 GuiMessageBox,
93 GuiMessageBoxCritical,
94 GuiDrawProgressBarCenter,
95 GuiDrawProgressBar,
96 GuiEditBox,
97 GuiTextToColor,
98 GuiTextToFillStyle,
99 GuiFadeInBackdrop,
100 GuiFadeOut,
101 GuiDisplayMenu,*/
102 NULL, NULL, NULL, NULL, NULL, NULL, NULL,
103 NULL, NULL, NULL, NULL, NULL, NULL, NULL,
104 NULL, NULL, NULL, NULL, NULL, NULL, NULL
105 };