User: Please analysers

This commit is contained in:
vit9696 2023-01-02 20:17:32 +03:00
parent 6055ec7b43
commit 9e81ed82f3

View File

@ -6,6 +6,7 @@
#include <UserBootServices.h>
#include <stdio.h>
#include <stdlib.h>
EFI_BOOT_SERVICES mBootServices = {
.RaiseTPL = DummyRaiseTPL,
@ -23,7 +24,10 @@ EFI_SYSTEM_TABLE mSystemTable = {
.ConOut = &mConOut
};
EFI_RUNTIME_SERVICES mRuntimeServices = { { 0 } };
EFI_RUNTIME_SERVICES mRuntimeServices = {
{ 0 },
NULL
};
EFI_SYSTEM_TABLE *gST = &mSystemTable;
EFI_BOOT_SERVICES *gBS = &mBootServices;