system76-edk2/MdeModulePkg/Include/Library/SmmCorePlatformHookLib.h
Michael Kubacki 1436aea4d5 MdeModulePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737

Apply uncrustify changes to .c/.h files in the MdeModulePkg package

Cc: Andrew Fish <afish@apple.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
2021-12-07 17:24:28 +00:00

44 lines
1.1 KiB
C

/** @file
Smm Core Platform Hook Library. This library class defines a set of platform
hooks called by the SMM Core.
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef __SMM_CORE_PLATFORM_HOOK_LIB__
#define __SMM_CORE_PLATFORM_HOOK_LIB__
/**
Performs platform specific tasks before invoking registered SMI handlers.
This function performs platform specific tasks before invoking registered SMI handlers.
@retval EFI_SUCCESS The platform hook completes successfully.
@retval Other values The paltform hook cannot complete due to some error.
**/
EFI_STATUS
EFIAPI
PlatformHookBeforeSmmDispatch (
VOID
);
/**
Performs platform specific tasks after invoking registered SMI handlers.
This function performs platform specific tasks after invoking registered SMI handlers.
@retval EFI_SUCCESS The platform hook completes successfully.
@retval Other values The paltform hook cannot complete due to some error.
**/
EFI_STATUS
EFIAPI
PlatformHookAfterSmmDispatch (
VOID
);
#endif