]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Framework/Ppi/DxeIpl/DxeIpl.h
Update Guid Value format.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / DxeIpl / DxeIpl.h
CommitLineData
3eb9473e 1/*++\r
2\r
3Copyright (c) 2004, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 DxeIpl.h\r
15\r
16Abstract:\r
17\r
18 DXE Initial Program Load PPI as defined in Tiano\r
19\r
20 When the PEI core is done it calls the DXE IPL via this PPI.\r
21\r
22--*/\r
23\r
24#ifndef _DXE_IPL_H_\r
25#define _DXE_IPL_H_\r
26\r
27#include "Tiano.h"\r
28#include "PeiHob.h"\r
29\r
30#define EFI_DXE_IPL_PPI_GUID \\r
31 { \\r
7ccf38a3 32 0xae8ce5d, 0xe448, 0x4437, {0xa8, 0xd7, 0xeb, 0xf5, 0xf1, 0x94, 0xf7, 0x31} \\r
3eb9473e 33 }\r
34\r
35EFI_FORWARD_DECLARATION (EFI_DXE_IPL_PPI);\r
36\r
37typedef\r
38EFI_STATUS\r
39(EFIAPI *EFI_DXE_IPL_ENTRY) (\r
40 IN EFI_DXE_IPL_PPI * This,\r
41 IN EFI_PEI_SERVICES **PeiServices,\r
42 IN EFI_PEI_HOB_POINTERS HobList\r
43 );\r
44\r
8cdb2112 45struct _EFI_DXE_IPL_PPI {\r
3eb9473e 46 EFI_DXE_IPL_ENTRY Entry;\r
8cdb2112 47};\r
3eb9473e 48\r
49extern EFI_GUID gEfiDxeIplPpiGuid;\r
50\r
51#endif\r