PrePiHobListPointerLib.h 612 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /** @file
  2. *
  3. * Copyright (c) 2011, ARM Limited. All rights reserved.
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause-Patent
  6. *
  7. **/
  8. #ifndef __PREPI_HOBLIST_POINTER_LIB_H__
  9. #define __PREPI_HOBLIST_POINTER_LIB_H__
  10. /**
  11. Returns the pointer to the HOB list.
  12. This function returns the pointer to first HOB in the list.
  13. @return The pointer to the HOB list.
  14. **/
  15. VOID *
  16. EFIAPI
  17. PrePeiGetHobList (
  18. VOID
  19. );
  20. /**
  21. Updates the pointer to the HOB list.
  22. @param HobList Hob list pointer to store
  23. **/
  24. EFI_STATUS
  25. EFIAPI
  26. PrePeiSetHobList (
  27. IN VOID *HobList
  28. );
  29. #endif