aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_18/UefiLessonsPkg/SimplestApp/SimplestApp.c
blob: e46a2c584d80e8d2f77d597bd1abaafb068e83ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
 *
 * SPDX-License-Identifier: MIT
 */

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