29 lines
455 B
C
29 lines
455 B
C
/*++
|
|
|
|
Copyright (c) 2024, Quinn Stephens.
|
|
Provided under the BSD 3-Clause license.
|
|
|
|
Module Name:
|
|
|
|
efidevp.h
|
|
|
|
Abstract:
|
|
|
|
Provides EFI device path definitions.
|
|
|
|
--*/
|
|
|
|
#ifndef _EFIDEVP_H
|
|
#define _EFIDEVP_H
|
|
|
|
typedef struct _EFI_DEVICE_PATH_PROTOCOL {
|
|
UINT8 Type;
|
|
UINT8 SubType;
|
|
UINT8 Length[2];
|
|
} EFI_DEVICE_PATH_PROTOCOL;
|
|
|
|
typedef struct _EFI_DEVICE_PATH_PROTOCOL _EFI_DEVICE_PATH;
|
|
typedef EFI_DEVICE_PATH_PROTOCOL EFI_DEVICE_PATH;
|
|
|
|
#endif
|