stage0-uefi/Development/efi/device_path_protocol.h

15 lines
271 B
C

/* 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;
};
#endif // __EFI_DEVICE_PATH_PROTOCOL_H__