stage0-uefi/Development/efi/device_path_protocol.h

19 lines
385 B
C
Raw Normal View History

/* SPDX-FileCopyrightText: Mike Krinkin */
2022-07-05 01:46:29 +01:00
/* SPDX-License-Identifier: Unlicense */
#ifndef __EFI_DEVICE_PATH_PROTOCOL_H__
#define __EFI_DEVICE_PATH_PROTOCOL_H__
#include "types.h"
struct efi_device_path_protocol {
uint8_t type;
uint8_t subtype;
uint16_t length;
2022-07-08 18:49:15 +01:00
uint32_t memory_type;
uint64_t start_address;
uint64_t end_address;
2022-07-05 01:46:29 +01:00
};
#endif // __EFI_DEVICE_PATH_PROTOCOL_H__