TianoCore EDK2 master
|
#include <Uefi.h>
#include <Library/DebugLib.h>
#include <Library/NetLib.h>
#include <Library/UefiApplicationEntryPoint.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Protocol/ShellParameters.h>
Go to the source code of this file.
Functions | |
EFI_STATUS | GetArg (VOID) |
VOID | PrintHelp (VOID) |
EFI_STATUS EFIAPI | UefiMain (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable) |
Variables | |
UINTN | Argc |
CHAR16 ** | Argv |
The implementation for Redfish Platform Configuration application.
Copyright (c) 2019, Intel Corporation. All rights reserved.
(C) Copyright 2020 Hewlett Packard Enterprise Development LP
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file RedfishPlatformConfig.c.
EFI_STATUS GetArg | ( | VOID | ) |
This function parse application ARG.
Definition at line 30 of file RedfishPlatformConfig.c.
VOID PrintHelp | ( | VOID | ) |
This function print the help message.
Definition at line 57 of file RedfishPlatformConfig.c.
EFI_STATUS EFIAPI UefiMain | ( | IN EFI_HANDLE | ImageHandle, |
IN EFI_SYSTEM_TABLE * | SystemTable | ||
) |
The user Entry Point for Application. The user code starts with this function as the real entry point for the application.
[in] | ImageHandle | The firmware allocated handle for the EFI image. |
[in] | SystemTable | A pointer to the EFI System Table. |
EFI_SUCCESS | The entry point is executed successfully. |
other | Some error occurs when executing this entry point. |
Definition at line 82 of file RedfishPlatformConfig.c.
UINTN Argc |
Definition at line 20 of file RedfishPlatformConfig.c.
CHAR16** Argv |
Definition at line 21 of file RedfishPlatformConfig.c.