]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/Include/Library/PrePiHobListPointerLib.h
EmbeddedPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmbeddedPkg / Include / Library / PrePiHobListPointerLib.h
1 /** @file
2 *
3 * Copyright (c) 2011, ARM Limited. All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-2-Clause-Patent
6 *
7 **/
8
9 #ifndef __PREPI_HOBLIST_POINTER_LIB_H__
10 #define __PREPI_HOBLIST_POINTER_LIB_H__
11
12 /**
13 Returns the pointer to the HOB list.
14
15 This function returns the pointer to first HOB in the list.
16
17 @return The pointer to the HOB list.
18
19 **/
20 VOID *
21 EFIAPI
22 PrePeiGetHobList (
23 VOID
24 );
25
26 /**
27 Updates the pointer to the HOB list.
28
29 @param HobList Hob list pointer to store
30
31 **/
32 EFI_STATUS
33 EFIAPI
34 PrePeiSetHobList (
35 IN VOID *HobList
36 );
37
38 #endif