diff options
| author | Joursoir <chat@joursoir.net> | 2022-03-19 17:25:13 +0300 | 
|---|---|---|
| committer | Joursoir <chat@joursoir.net> | 2022-03-19 17:25:13 +0300 | 
| commit | 135db17fb36f502f0f20d5675f4f1d6f41cda226 (patch) | |
| tree | 6d502b89115ae3e4761758fd239a8c08700a2181 | |
| parent | 451437855819bd89ca81c923657c3a01018f5119 (diff) | |
| download | umt-135db17fb36f502f0f20d5675f4f1d6f41cda226.tar.gz umt-135db17fb36f502f0f20d5675f4f1d6f41cda226.tar.bz2 umt-135db17fb36f502f0f20d5675f4f1d6f41cda226.zip  | |
add .c and .inf stub-files
| -rw-r--r-- | UefiMonitorTest/UefiMonitorTest.c | 21 | ||||
| -rw-r--r-- | UefiMonitorTest/UefiMonitorTest.inf | 28 | 
2 files changed, 49 insertions, 0 deletions
diff --git a/UefiMonitorTest/UefiMonitorTest.c b/UefiMonitorTest/UefiMonitorTest.c new file mode 100644 index 0000000..f7c9f04 --- /dev/null +++ b/UefiMonitorTest/UefiMonitorTest.c @@ -0,0 +1,21 @@ +#include <Uefi.h> +#include <Library/BaseLib.h> +#include <Library/DebugLib.h> +#include <Library/MemoryAllocationLib.h> +#include <Library/BaseMemoryLib.h> +#include <Library/UefiApplicationEntryPoint.h> +#include <Library/UefiLib.h> +#include <Library/UefiBootServicesTableLib.h> +#include <Library/UefiRuntimeServicesTableLib.h> + +#include <Protocol/GraphicsOutput.h> + +EFI_STATUS +EFIAPI +UefiMain ( +  IN EFI_HANDLE        ImageHandle, +  IN EFI_SYSTEM_TABLE  *SystemTable +  ) +{ +  return EFI_SUCCESS; +} diff --git a/UefiMonitorTest/UefiMonitorTest.inf b/UefiMonitorTest/UefiMonitorTest.inf new file mode 100644 index 0000000..64a3b08 --- /dev/null +++ b/UefiMonitorTest/UefiMonitorTest.inf @@ -0,0 +1,28 @@ +[Defines] +  INF_VERSION                    = 0x00010005 +  BASE_NAME                      = UefiMonitorTest +  FILE_GUID                      = e6ca80d0-12bc-4fda-a229-8d108630296e +  MODULE_TYPE                    = UEFI_APPLICATION +  VERSION_STRING                 = 1.0 +  ENTRY_POINT                    = UefiMain + +[Sources] +  UefiMonitorTest.c + +[Packages] +  MdePkg/MdePkg.dec +  MdeModulePkg/MdeModulePkg.dec + +[LibraryClasses] +  BaseLib +  DebugLib +  MemoryAllocationLib +  PcdLib +  UefiApplicationEntryPoint +  UefiBootServicesTableLib +  UefiLib +  UefiRuntimeServicesTableLib + +[FeaturePcd] + +[Pcd]  | 
