• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*++
2 
3 Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution.  The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8 
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 
12 Module Name:
13 
14   LoadedImageDevicePath.h
15 
16 Abstract:
17 
18   The Loaded Image Device Path Protocol as defined in UEFI 2.1.
19 
20   When installed, the Loaded Image Device Path Protocol specifies the device
21   path that was used when a PE/COFF image was loaded through the EFI Boot
22   Service LoadImage().
23 
24 
25 --*/
26 
27 #ifndef _LOADED_IMAGE_DEVICE_PATH_H_
28 #define _LOADED_IMAGE_DEVICE_PATH_H_
29 
30 #include EFI_PROTOCOL_DEFINITION (DevicePath)
31 
32 //
33 // Loaded Image Device Path protocol
34 //
35 #define EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL_GUID \
36   { \
37     0xbc62157e, 0x3e33, 0x4fec, {0x99, 0x20, 0x2d, 0x3b, 0x36, 0xd7, 0x50, 0xdf} \
38   }
39 
40 typedef EFI_DEVICE_PATH_PROTOCOL EFI_LOADED_IMAGE_DEVICE_PATH_PROTOCOL;
41 
42 extern EFI_GUID gEfiLoadedImageDevicePathProtocolGuid;
43 
44 #endif
45