blob: b05651fa15a63393010e8391b42f93721c2a5f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
##
# Copyright (c) 2024, Konstantin Aladyshev <aladyshev22@gmail.com>
#
# SPDX-License-Identifier: MIT
##
[Defines]
INF_VERSION = 1.25
BASE_NAME = ProtocolEventDriver
FILE_GUID = 0b59d62a-3250-42eb-9859-364faf5bc9c8
MODULE_TYPE = UEFI_DRIVER
VERSION_STRING = 1.0
ENTRY_POINT = ProtocolEventDriverEntryPoint
UNLOAD_IMAGE = ProtocolEventDriverUnload
[Sources]
ProtocolEventDriver.c
[Packages]
MdePkg/MdePkg.dec
UefiLessonsPkg/UefiLessonsPkg.dec
[LibraryClasses]
UefiDriverEntryPoint
UefiLib
[Protocols]
gSimpleClassProtocolGuid
|