mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
77 lines
1.8 KiB
C
77 lines
1.8 KiB
C
/** @file
|
|
Copyright (C) 2023, Goldfish64. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
**/
|
|
|
|
#ifndef LEGACY_BOOT_INTERNAL_H
|
|
#define LEGACY_BOOT_INTERNAL_H
|
|
|
|
#include <Uefi.h>
|
|
|
|
#include <IndustryStandard/Mbr.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/DevicePathLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/OcBootManagementLib.h>
|
|
#include <Library/OcDebugLogLib.h>
|
|
#include <Library/OcDevicePathLib.h>
|
|
#include <Library/OcFileLib.h>
|
|
#include <Library/OcLegacyThunkLib.h>
|
|
#include <Library/OcMiscLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/UefiLib.h>
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
|
|
|
#include <Protocol/DevicePath.h>
|
|
#include <Protocol/Legacy8259.h>
|
|
|
|
/**
|
|
Legacy operating system type.
|
|
**/
|
|
typedef enum OC_LEGACY_OS_TYPE_ {
|
|
OcLegacyOsTypeNone,
|
|
OcLegacyOsTypeWindowsNtldr,
|
|
OcLegacyOsTypeWindowsBootmgr,
|
|
OcLegacyOsTypeIsoLinux
|
|
} OC_LEGACY_OS_TYPE;
|
|
|
|
EFI_STATUS
|
|
InternalGetBiosDiskAddress (
|
|
IN THUNK_CONTEXT *ThunkContext,
|
|
IN EFI_LEGACY_8259_PROTOCOL *Legacy8259,
|
|
IN EFI_HANDLE DiskHandle,
|
|
OUT UINT8 *DriveNumber
|
|
);
|
|
|
|
EFI_STATUS
|
|
InternalIsLegacyInterfaceSupported (
|
|
OUT BOOLEAN *IsAppleInterfaceSupported
|
|
);
|
|
|
|
EFI_STATUS
|
|
InternalSetBootCampHDPath (
|
|
IN EFI_DEVICE_PATH_PROTOCOL *HdDevicePath
|
|
);
|
|
|
|
EFI_STATUS
|
|
InternalLoadAppleLegacyInterface (
|
|
IN EFI_HANDLE ParentImageHandle,
|
|
OUT EFI_DEVICE_PATH_PROTOCOL **ImageDevicePath,
|
|
OUT EFI_HANDLE *ImageHandle
|
|
);
|
|
|
|
OC_LEGACY_OS_TYPE
|
|
InternalGetPartitionLegacyOsType (
|
|
IN EFI_HANDLE PartitionHandle,
|
|
IN BOOLEAN IsCdRomSupported
|
|
);
|
|
|
|
EFI_STATUS
|
|
InternalLoadLegacyPbr (
|
|
IN EFI_DEVICE_PATH_PROTOCOL *PartitionPath
|
|
);
|
|
|
|
#endif // LEGACY_BOOT_INTERNAL_H
|