ShowVerbTb.c
/*
* ShowVerbTb.c
*
* Created on: 2017年10月27日
* Author:
*/
#include <Uefi.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Protocol/SimpleFileSystem.h>
#include <Library/BaseLib.h>
#include <Library/UefiLib.h>
#include <Guid/FileInfo.h>
#include "UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.h"
#define MY_DEBUG_ON 1
#define MY_DEBUG if(EFI_ERROR(Status) && MY_DEBUG_ON)\
{\
Print(L"%d_%r\r\n",__LINE__,Status);\
return Status;\
}
INTN
EFIAPI
ShellAppMain (
IN UINTN Argc,
IN CHAR16 **Argv
)
{
EFI_STATUS Status;
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *pFileSystemProtocol;
EFI_FILE_PROTOCOL *pRoot;
UINTN BufSize;
EFI_FILE_PROTOCOL *Fi