加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
efi-time.h 667 Bytes
一键复制 编辑 原始数据 按行查看 历史
vingen 提交于 2022-11-20 05:12 . init
/*
* efi-time.h
*
* UEFI Time representation.
*/
#ifndef __EFI_TIME_H__
#define __EFI_TIME_H__
#include <efi.h>
#define EFI_TIME_ADJUST_DAYLIGHT 0x01
#define EFI_TIME_IN_DAYLIGHT 0x02
#define EFI_UNSPECIFIED_TIMEZONE 0x07ff
typedef struct EFI_TIME {
UINT16 Year;
UINT8 Month;
UINT8 Day;
UINT8 Hour;
UINT8 Minute;
UINT8 Second;
UINT8 Pad1;
UINT32 Nanosecond;
INT16 TimeZone;
UINT8 Daylight;
UINT8 PAD2;
} EFI_TIME;
typedef struct EFI_TIME_CAPABILITIES {
UINT32 Resolution;
UINT32 Accuracy;
BOOLEAN SetsToZero;
} EFI_TIME_CAPABILITIES;
#endif /* __EFI_TIME_H__ */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化