397093d331
* include/grub/powerpc/ieee1275/console.h (GRUB_CONSOLE_KEY_*): Remove macros (they were i386-pc specific). * include/grub/sparc64/ieee1275/console.h: Likewise. * include/grub/efi/console.h: Likewise.
31 lines
1 KiB
C
31 lines
1 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2002,2005,2006,2007 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef GRUB_EFI_CONSOLE_HEADER
|
|
#define GRUB_EFI_CONSOLE_HEADER 1
|
|
|
|
#include <grub/types.h>
|
|
#include <grub/symbol.h>
|
|
|
|
/* Initialize the console system. */
|
|
void grub_console_init (void);
|
|
|
|
/* Finish the console system. */
|
|
void grub_console_fini (void);
|
|
|
|
#endif /* ! GRUB_EFI_CONSOLE_HEADER */
|