vaseboot/include/VasEBoot/efi/console_control.h

58 lines
2.0 KiB
C

/* console_control.h - definitions of the console control protocol */
/*
* VasEBoot -- GRand Unified Bootloader
* Copyright (C) 2006,2007 Free Software Foundation, Inc.
*
* VasEBoot 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.
*
* VasEBoot 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 VasEBoot. If not, see <http://www.gnu.org/licenses/>.
*/
/* The console control protocol is not a part of the EFI spec,
but defined in Intel's Sample Implementation. */
#ifndef VasEBoot_EFI_CONSOLE_CONTROL_HEADER
#define VasEBoot_EFI_CONSOLE_CONTROL_HEADER 1
#define VasEBoot_EFI_CONSOLE_CONTROL_GUID \
{ 0xf42f7782, 0x12e, 0x4c12, \
{ 0x99, 0x56, 0x49, 0xf9, 0x43, 0x4, 0xf7, 0x21 } \
}
enum VasEBoot_efi_screen_mode
{
VasEBoot_EFI_SCREEN_TEXT,
VasEBoot_EFI_SCREEN_GRAPHICS,
VasEBoot_EFI_SCREEN_TEXT_MAX_VALUE
};
typedef enum VasEBoot_efi_screen_mode VasEBoot_efi_screen_mode_t;
struct VasEBoot_efi_console_control_protocol
{
VasEBoot_efi_status_t
(*get_mode) (struct VasEBoot_efi_console_control_protocol *this,
VasEBoot_efi_screen_mode_t *mode,
VasEBoot_efi_boolean_t *uga_exists,
VasEBoot_efi_boolean_t *std_in_locked);
VasEBoot_efi_status_t
(*set_mode) (struct VasEBoot_efi_console_control_protocol *this,
VasEBoot_efi_screen_mode_t mode);
VasEBoot_efi_status_t
(*lock_std_in) (struct VasEBoot_efi_console_control_protocol *this,
VasEBoot_efi_char16_t *password);
};
typedef struct VasEBoot_efi_console_control_protocol VasEBoot_efi_console_control_protocol_t;
#endif /* ! VasEBoot_EFI_CONSOLE_CONTROL_HEADER */