aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c
diff options
context:
space:
mode:
Diffstat (limited to 'Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c')
-rw-r--r--Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c b/Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c
new file mode 100644
index 0000000..569f2d7
--- /dev/null
+++ b/Lessons/Lesson_51/UefiLessonsPkg/HIIStringsMan/HIIStringsMan.c
@@ -0,0 +1,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;
+}