Changeset 99404 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Include/Protocol/DiskInfo.h
- Timestamp:
- Apr 14, 2023 3:17:44 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156854
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-145445 /vendor/edk2/current 103735-103757,103769-103776,129194-156846
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Include/Protocol/DiskInfo.h
r80721 r99404 26 26 /// Forward declaration for EFI_DISK_INFO_PROTOCOL 27 27 /// 28 typedef struct _EFI_DISK_INFO_PROTOCOL 28 typedef struct _EFI_DISK_INFO_PROTOCOL EFI_DISK_INFO_PROTOCOL; 29 29 30 30 /// … … 187 187 /// of this protocol. 188 188 /// 189 EFI_GUID Interface;189 EFI_GUID Interface; 190 190 /// 191 191 /// Return the results of the Inquiry command to a drive in InquiryData. Data 192 192 /// format of Inquiry data is defined by the Interface GUID. 193 193 /// 194 EFI_DISK_INFO_INQUIRY Inquiry;194 EFI_DISK_INFO_INQUIRY Inquiry; 195 195 /// 196 196 /// Return the results of the Identify command to a drive in IdentifyData. Data 197 197 /// format of Identify data is defined by the Interface GUID. 198 198 /// 199 EFI_DISK_INFO_IDENTIFY Identify;199 EFI_DISK_INFO_IDENTIFY Identify; 200 200 /// 201 201 /// Return the results of the Request Sense command to a drive in SenseData. Data 202 202 /// format of Sense data is defined by the Interface GUID. 203 203 /// 204 EFI_DISK_INFO_SENSE_DATA SenseData;204 EFI_DISK_INFO_SENSE_DATA SenseData; 205 205 /// 206 206 /// Specific controller. 207 207 /// 208 EFI_DISK_INFO_WHICH_IDE WhichIde;208 EFI_DISK_INFO_WHICH_IDE WhichIde; 209 209 }; 210 210 211 extern EFI_GUID gEfiDiskInfoProtocolGuid;212 213 extern EFI_GUID gEfiDiskInfoIdeInterfaceGuid;214 extern EFI_GUID gEfiDiskInfoScsiInterfaceGuid;215 extern EFI_GUID gEfiDiskInfoUsbInterfaceGuid;216 extern EFI_GUID gEfiDiskInfoAhciInterfaceGuid;217 extern EFI_GUID gEfiDiskInfoNvmeInterfaceGuid;218 extern EFI_GUID gEfiDiskInfoUfsInterfaceGuid;219 extern EFI_GUID gEfiDiskInfoSdMmcInterfaceGuid;211 extern EFI_GUID gEfiDiskInfoProtocolGuid; 212 213 extern EFI_GUID gEfiDiskInfoIdeInterfaceGuid; 214 extern EFI_GUID gEfiDiskInfoScsiInterfaceGuid; 215 extern EFI_GUID gEfiDiskInfoUsbInterfaceGuid; 216 extern EFI_GUID gEfiDiskInfoAhciInterfaceGuid; 217 extern EFI_GUID gEfiDiskInfoNvmeInterfaceGuid; 218 extern EFI_GUID gEfiDiskInfoUfsInterfaceGuid; 219 extern EFI_GUID gEfiDiskInfoSdMmcInterfaceGuid; 220 220 221 221 #endif
Note:
See TracChangeset
for help on using the changeset viewer.