DxeGopPolicyInit.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /** @file
  2. Header file for the GopPolicyInitDxe Driver.
  3. Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _GOP_POLICY_INIT_DXE_H_
  7. #define _GOP_POLICY_INIT_DXE_H_
  8. #include <Protocol/FirmwareVolume2.h>
  9. #include <Library/UefiLib.h>
  10. #include <Library/BaseLib.h>
  11. #include <Library/MemoryAllocationLib.h>
  12. #include <Library/DxeServicesTableLib.h>
  13. #include <Library/UefiBootServicesTableLib.h>
  14. #include <Library/UefiRuntimeServicesTableLib.h>
  15. #include <Library/BaseMemoryLib.h>
  16. #include <Library/DebugLib.h>
  17. #include <Library/PcdLib.h>
  18. /**
  19. Initialize GOP DXE Policy
  20. @param[in] ImageHandle Image handle of this driver.
  21. @retval EFI_SUCCESS Initialization complete.
  22. @retval EFI_UNSUPPORTED The chipset is unsupported by this driver.
  23. @retval EFI_OUT_OF_RESOURCES Do not have enough resources to initialize the driver.
  24. @retval EFI_DEVICE_ERROR Device error, driver exits abnormally.
  25. **/
  26. EFI_STATUS
  27. EFIAPI
  28. GopPolicyInitDxe(
  29. IN EFI_HANDLE ImageHandle
  30. );
  31. #endif