OpenCore
1.0.4
OpenCore Bootloader
|
#include <Library/OcMainLib.h>
#include <Guid/OcVariable.h>
#include <Guid/GlobalVariable.h>
#include <Guid/AppleVariable.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/DevicePathLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/MtrrLib.h>
#include <Library/OcAfterBootCompatLib.h>
#include <Library/OcAppleBootPolicyLib.h>
#include <Library/OcAppleEventLib.h>
#include <Library/OcAppleImageConversionLib.h>
#include <Library/OcAudioLib.h>
#include <Library/OcInputLib.h>
#include <Library/OcAppleKeyMapLib.h>
#include <Library/OcAppleUserInterfaceThemeLib.h>
#include <Library/OcConsoleLib.h>
#include <Library/OcCpuLib.h>
#include <Library/OcDataHubLib.h>
#include <Library/OcDevicePropertyLib.h>
#include <Library/OcDriverConnectionLib.h>
#include <Library/OcFirmwareVolumeLib.h>
#include <Library/OcHashServicesLib.h>
#include <Library/OcMiscLib.h>
#include <Library/OcSmcLib.h>
#include <Library/OcOSInfoLib.h>
#include <Library/OcVariableLib.h>
#include <Library/PrintLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
Go to the source code of this file.
Functions | |
STATIC VOID EFIAPI | OcExitBootServicesInputHandler (IN EFI_EVENT Event, IN VOID *Context) |
VOID | OcLoadUefiInputSupport (IN OC_GLOBAL_CONFIG *Config) |
VOID | OcLoadUefiOutputSupport (IN OC_STORAGE_CONTEXT *Storage, IN OC_GLOBAL_CONFIG *Config) |
OpenCore driver.
Copyright (c) 2019, vit9696. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Definition in file OpenCoreUefiInOut.c.
STATIC VOID EFIAPI OcExitBootServicesInputHandler | ( | IN EFI_EVENT | Event, |
IN VOID * | Context ) |
Definition at line 53 of file OpenCoreUefiInOut.c.
VOID OcLoadUefiInputSupport | ( | IN OC_GLOBAL_CONFIG * | Config | ) |
Load UEFI input compatibility support.
[out] | Config | OpenCore configuration. |
Definition at line 104 of file OpenCoreUefiInOut.c.
VOID OcLoadUefiOutputSupport | ( | IN OC_STORAGE_CONTEXT * | Storage, |
IN OC_GLOBAL_CONFIG * | Config ) |
Load UEFI output compatibility support.
[in] | Storage | OpenCore storage. |
[out] | Config | OpenCore configuration. |
Definition at line 184 of file OpenCoreUefiInOut.c.