Newer
Older
AMI-Aptio-BIOS-Reversed / AmiModulePkg / TcgStorageSecurity / SmmTcgStorageSec / SmmTcgStorageSec.c
@Ajax Dong Ajax Dong 7 days ago 527 bytes Recovering names
/** @file
  SmmTcgStorageSec.c -- SmmTcgStorageSec

  Auto-converted from IDA decompiler output.
  Functions: 1

Copyright (c) HR650X BIOS Decompilation Project
**/

#include "SmmTcgStorageSec.h"


// Function: ModuleEntryPoint
EFI_STATUS ModuleEntryPoint(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable)
{
  EFI_STATUS Status;

  TcgStorageSecurityInit(ImageHandle, SystemTable);
  Status = TcgStorageSecurityProcessCommands();
  if ( Status < 0 ) {
    TcgStorageSecurityHandleInitializeError();
  }
  return Status;
}