StandaloneMm.h 550 B

1234567891011121314151617181920212223242526272829
  1. /** @file
  2. Standalone MM.
  3. Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
  4. Copyright (c) 2016 - 2018, ARM Limited. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #ifndef _STANDALONE_MM_H_
  8. #define _STANDALONE_MM_H_
  9. #include <PiMm.h>
  10. typedef
  11. EFI_STATUS
  12. (EFIAPI *MM_IMAGE_ENTRY_POINT)(
  13. IN EFI_HANDLE ImageHandle,
  14. IN EFI_MM_SYSTEM_TABLE *MmSystemTable
  15. );
  16. typedef
  17. EFI_STATUS
  18. (EFIAPI *STANDALONE_MM_FOUNDATION_ENTRY_POINT)(
  19. IN VOID *HobStart
  20. );
  21. #endif