aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c
blob: 569f2d761882270956d4274b6ec1a4a38df5e499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>

GLOBAL_REMOVE_IF_UNREFERENCED EFI_STRING_ID mStringHelpTokenId = STRING_TOKEN(STR_HELP);

EFI_STATUS
EFIAPI
UefiMain (
  IN EFI_HANDLE        ImageHandle,
  IN EFI_SYSTEM_TABLE  *SystemTable
  )
{
  return EFI_SUCCESS;
}