/** @file
  VerifyFwBootGuard.c -- VerifyFwBootGuard

  Auto-converted from IDA decompiler output.
  Functions: 1

Copyright (c) HR650X BIOS Decompilation Project
**/

#include "VerifyFwBootGuard.h"


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

  VerifyFwBootGuardInitialize();
  Status = VerifyBootGuardStatus(ImageHandle, SystemTable);
  if (EFI_ERROR(Status)) {
    VerifyFwBootGuardFail();
  }

  return Status;
}
