代码拉取完成,页面将自动刷新
/*
* uefi.h
*
* UEFI common header.
*/
#ifndef __UEFI_H__
#define __UEFI_H__
#include <efi.h>
#include <efi-bs.h>
#include <efi-ct.h>
#include <efi-rs.h>
#include <efi-st.h>
#include <efi-time.h>
#include <protocol/efi-acpitp.h>
#include <protocol/efi-dpp.h>
#include <protocol/efi-fp.h>
#include <protocol/efi-gop.h>
#include <protocol/efi-lidpp.h>
#include <protocol/efi-lip.h>
#include <protocol/efi-sfsp.h>
#include <protocol/efi-sio.h>
#include <protocol/efi-stip.h>
#include <protocol/efi-stop.h>
#include <protocol/efi-vmpp.h>
typedef UINTN RETURN_STATUS;
#define RETURN_ERROR(StatusCode) (((INTN)(RETURN_STATUS)(StatusCode)) < 0)
#define EFI_ERROR(A) RETURN_ERROR(A)
#ifndef IN
#define IN
#define OUT
#define OPTIONAL
#endif
// Forces EFI calling conventions reguardless of compiler options
#ifndef EFIAPI
#ifdef _MSC_EXTENSIONS
// Force C calling convention for Microsoft C compiler
#define EFIAPI __cdecl
#elif defined(HAVE_USE_MS_ABI)
// Force amd64/ms calling conventions.
#define EFIAPI __attribute__((ms_abi))
#else
// Substitute expresion to force C calling convention
#define EFIAPI
#endif
#endif
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
#define bool _Bool
#define false 0
#define true 1
#endif
#endif /* __UEFI_H__ */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。