| /** @file | |
| Ia32-specific functionality for DxeLoad. | |
| Copyright (c) 2024, Intel Corporation. All rights reserved.<BR> | |
| SPDX-License-Identifier: BSD-2-Clause-Patent | |
| **/ | |
| #include "UefiPayloadEntry.h" | |
| /** | |
| Entry point to the C language phase of UEFI payload. | |
| @param[in] BootloaderParameter The starting address of bootloader parameter block. | |
| @retval It will not return if SUCCESS, and return error when passing bootloader parameter. | |
| **/ | |
| EFI_STATUS | |
| EFIAPI | |
| _ModuleEntryPoint ( | |
| IN UINTN BootloaderParameter | |
| ) | |
| { | |
| return FitUplEntryPoint (BootloaderParameter); | |
| } |