mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
ac99fa1fdc
- Added protected mode exception handling in case FreeLoader crashes - Reworked memory manager to use all of extended memory - Reworked UI code, now supports multiple text-mode resolutions svn path=/trunk/; revision=3010
85 lines
1.8 KiB
C
85 lines
1.8 KiB
C
/*
|
|
* FreeLoader
|
|
* Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <freeldr.h>
|
|
#include <ui.h>
|
|
#include "gui.h"
|
|
#include <rtl.h>
|
|
#include <mm.h>
|
|
#include <debug.h>
|
|
#include <inifile.h>
|
|
#include <version.h>
|
|
|
|
VOID GuiDrawBackdrop(VOID)
|
|
{
|
|
}
|
|
|
|
VOID GuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR FillChar, UCHAR Attr /* Color Attributes */)
|
|
{
|
|
}
|
|
|
|
VOID GuiDrawShadow(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom)
|
|
{
|
|
}
|
|
|
|
VOID GuiDrawBox(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOL Fill, BOOL Shadow, UCHAR Attr)
|
|
{
|
|
}
|
|
|
|
VOID GuiDrawText(ULONG X, ULONG Y, PUCHAR Text, UCHAR Attr)
|
|
{
|
|
}
|
|
|
|
VOID GuiDrawStatusText(PUCHAR StatusText)
|
|
{
|
|
}
|
|
|
|
VOID GuiUpdateDateTime(VOID)
|
|
{
|
|
}
|
|
|
|
VOID GuiSaveScreen(PUCHAR Buffer)
|
|
{
|
|
}
|
|
|
|
VOID GuiRestoreScreen(PUCHAR Buffer)
|
|
{
|
|
}
|
|
|
|
VOID GuiMessageBox(PUCHAR MessageText)
|
|
{
|
|
}
|
|
|
|
VOID GuiMessageBoxCritical(PUCHAR MessageText)
|
|
{
|
|
}
|
|
|
|
VOID GuiDrawProgressBar(ULONG Position, ULONG Range)
|
|
{
|
|
}
|
|
|
|
UCHAR GuiTextToColor(PUCHAR ColorText)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
UCHAR GuiTextToFillStyle(PUCHAR FillStyleText)
|
|
{
|
|
return 0;
|
|
}
|