mirror of
https://review.haiku-os.org/haiku
synced 2025-02-20 20:50:05 +01:00
* Drop gnu-efi Change-Id: Ib601fc8ced49b18281b6b98cf861a5aef1b9c065 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2026 Reviewed-by: Alex von Gluck IV <kallisti5@unixzen.com> Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
22 lines
873 B
C
22 lines
873 B
C
// Copyright 2016 The Fuchsia Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#pragma once
|
|
|
|
#include <efi/types.h>
|
|
#include <efi/protocol/device-path.h>
|
|
#include <stdbool.h>
|
|
|
|
#define EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID \
|
|
{0x8b843e20, 0x8132, 0x4852, {0x90, 0xcc, 0x55, 0x1a, 0x4e, 0x4a, 0x7f, 0x1c}}
|
|
extern efi_guid DevicePathToTextProtocol;
|
|
|
|
typedef struct efi_device_path_to_text_protocol {
|
|
char16_t* (*ConvertDeviceNodeToText) (const efi_device_path_protocol* dev_node,
|
|
bool display_only, bool allow_shortcuts) EFIAPI;
|
|
|
|
char16_t* (*ConvertDevicePathToText) (const efi_device_path_protocol* dev_path,
|
|
bool display_only, bool allow_shortcuts) EFIAPI;
|
|
} efi_device_path_to_text_protocol;
|