Files
slimbootloader/BootloaderCommonPkg/Library/ShellExtensionLibNull/ShellExtension.c
T

29 lines
483 B
C
Raw Normal View History

2018-09-13 16:11:07 -07:00
/** @file
A NULL instance for extension shell library
Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
2019-06-12 18:01:09 -07:00
SPDX-License-Identifier: BSD-2-Clause-Patent
2018-09-13 16:11:07 -07:00
**/
#include <Library/ShellLib.h>
CONST SHELL_COMMAND *mShellExtensionCommands[] = {
NULL,
};
/**
Get shell command list supported by extension shell lib
@retval Pointer of SHELL_COMMAND array.
**/
CONST SHELL_COMMAND **
EFIAPI
GetShellExtensionCmds (
VOID
)
{
return mShellExtensionCommands;
}