Module: wine Branch: master Commit: a865ec353c85bf2492225344d89ab621d65ee9c1 URL: https://gitlab.winehq.org/wine/wine/-/commit/a865ec353c85bf2492225344d89ab62...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Thu Apr 4 16:09:35 2024 +1100
include: Add STORAGE_HOTPLUG_INFO structure.
---
include/ntddstor.h | 8 ++++++++ 1 file changed, 8 insertions(+)
diff --git a/include/ntddstor.h b/include/ntddstor.h index b8c4bb73b0d..4d715efd1ef 100644 --- a/include/ntddstor.h +++ b/include/ntddstor.h @@ -272,6 +272,14 @@ typedef struct _STORAGE_ADAPTER_DESCRIPTOR { USHORT BusMinorVersion; } STORAGE_ADAPTER_DESCRIPTOR, *PSTORAGE_ADAPTER_DESCRIPTOR;
+typedef struct _STORAGE_HOTPLUG_INFO { + ULONG Size; + BOOLEAN MediaRemovable; + BOOLEAN MediaHotplug; + BOOLEAN DeviceHotplug; + BOOLEAN WriteCacheEnableOverride; +} STORAGE_HOTPLUG_INFO, *PSTORAGE_HOTPLUG_INFO; + #ifdef __cplusplus } #endif