Use shorter and more readable variable names

このコミットが含まれているのは:
2022-11-07 20:06:19 +01:00
コミット 3c6136811b
2個のファイルの変更30行の追加30行の削除

ファイルの表示

@@ -16,7 +16,7 @@ EFI_HANDLE EfiImageHandle;
PEFI_SYSTEM_TABLE EfiSystemTable;
/* EFI XT Loader Protocol */
PXT_BOOT_LOADER_PROTOCOL EfiXtLdrProtocol;
PXT_BOOT_LOADER_PROTOCOL XtLdrProtocol;
/**
* This routine is the entry point of the XT EFI boot loader module.
@@ -42,7 +42,7 @@ BlXtLdrModuleMain(EFI_HANDLE ImageHandle,
EfiSystemTable = SystemTable;
/* Open the XTLDR protocol */
Status = BlGetXtLoaderProtocol(&EfiXtLdrProtocol);
Status = BlGetXtLoaderProtocol(&XtLdrProtocol);
if(Status != STATUS_EFI_SUCCESS)
{
/* Failed to open loader protocol */