2011-07-01 12:59:06 +02:00
|
|
|
/** @file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
|
|
*
|
2019-04-04 01:03:38 +02:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-07-01 12:59:06 +02:00
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PREPI_HOBLIST_POINTER_LIB_H__
|
|
|
|
#define __PREPI_HOBLIST_POINTER_LIB_H__
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the pointer to the HOB list.
|
|
|
|
|
|
|
|
This function returns the pointer to first HOB in the list.
|
|
|
|
|
|
|
|
@return The pointer to the HOB list.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
PrePeiGetHobList (
|
|
|
|
VOID
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Updates the pointer to the HOB list.
|
|
|
|
|
|
|
|
@param HobList Hob list pointer to store
|
2014-08-19 15:29:52 +02:00
|
|
|
|
2011-07-01 12:59:06 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PrePeiSetHobList (
|
|
|
|
IN VOID *HobList
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|