aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c
diff options
context:
space:
mode:
Diffstat (limited to 'Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c')
-rw-r--r--Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c b/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c
deleted file mode 100644
index 7ed3081..0000000
--- a/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <Library/UefiBootServicesTableLib.h>
-#include <Library/UefiLib.h>
-
-#include <Library/PcdLib.h>
-
-EFI_STATUS
-EFIAPI
-UefiMain (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
-{
- Print(L"PcdMyVar32=%d\n", FixedPcdGet32(PcdMyVar32));
- return EFI_SUCCESS;
-}