/** @file This library will parse the coreboot table in memory and extract those required information. Copyright (c) 2021, Star Labs Systems. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent **/ #ifndef SMM_STORE_PARSE_LIB_H_ #define SMM_STORE_PARSE_LIB_H_ #include /** Find the SmmStore HOB. @param SmmStoreInfo Pointer to the SMMSTORE_INFO structure @retval RETURN_SUCCESS Successfully find the Smm store buffer information. @retval RETURN_NOT_FOUND Failed to find the Smm store buffer information . **/ RETURN_STATUS EFIAPI ParseSmmStoreInfo ( OUT SMMSTORE_INFO *SmmStoreInfo ); #endif // SMM_STORE_PARSE_LIB_H_