uefi 如何读写磁盘

来源:互联网 发布:mac 解压rar命令 编辑:程序博客网 时间:2024/06/05 17:36
////// This protocol is used to abstract Block I/O interfaces.///struct _EFI_DISK_IO_PROTOCOL {  ///  /// The revision to which the disk I/O interface adheres. All future  /// revisions must be backwards compatible. If a future version is not  /// backwards compatible, it is not the same GUID.  ///  UINT64          Revision;  EFI_DISK_READ   ReadDisk;  EFI_DISK_WRITE  WriteDisk;};

原创粉丝点击