diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2024-02-12 16:21:34 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2024-02-12 16:21:34 +0300 |
commit | 505dad17d2216fab0342afb5794f300a949dd4c8 (patch) | |
tree | a0f1cd8e247f30e0bd8a988739f894e78353d4c2 /UefiLessonsPkg/ProtocolEventDriver/ProtocolEventDriver.inf | |
parent | f06fa2232b871dde41da965eace6fb3702a8ddca (diff) | |
download | UEFI-Lessons-505dad17d2216fab0342afb5794f300a949dd4c8.tar.gz UEFI-Lessons-505dad17d2216fab0342afb5794f300a949dd4c8.tar.bz2 UEFI-Lessons-505dad17d2216fab0342afb5794f300a949dd4c8.zip |
Add protocol installation callbacks lesson
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'UefiLessonsPkg/ProtocolEventDriver/ProtocolEventDriver.inf')
-rw-r--r-- | UefiLessonsPkg/ProtocolEventDriver/ProtocolEventDriver.inf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/UefiLessonsPkg/ProtocolEventDriver/ProtocolEventDriver.inf b/UefiLessonsPkg/ProtocolEventDriver/ProtocolEventDriver.inf new file mode 100644 index 0000000..b05651f --- /dev/null +++ b/UefiLessonsPkg/ProtocolEventDriver/ProtocolEventDriver.inf @@ -0,0 +1,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 |