qga/commands-win32.c: Drop the check for _WIN32_WINNT >= 0x0601
All current versions of glib require _WIN32_WINNT set to 0x0601 or higher already, and we also use this value as a minimum in our osdep.h header file, so there is no way to still compile this code with an older version of the Windows ABI. Thus we can drop this check now. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com> Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
This commit is contained in:
parent
c7d74f2724
commit
8cc28cb16e
@ -484,7 +484,6 @@ static GuestDiskBusType win2qemu[] = {
|
||||
[BusTypeSata] = GUEST_DISK_BUS_TYPE_SATA,
|
||||
[BusTypeSd] = GUEST_DISK_BUS_TYPE_SD,
|
||||
[BusTypeMmc] = GUEST_DISK_BUS_TYPE_MMC,
|
||||
#if (_WIN32_WINNT >= 0x0601)
|
||||
[BusTypeVirtual] = GUEST_DISK_BUS_TYPE_VIRTUAL,
|
||||
[BusTypeFileBackedVirtual] = GUEST_DISK_BUS_TYPE_FILE_BACKED_VIRTUAL,
|
||||
/*
|
||||
@ -492,7 +491,6 @@ static GuestDiskBusType win2qemu[] = {
|
||||
*/
|
||||
[BusTypeSpaces] = GUEST_DISK_BUS_TYPE_UNKNOWN,
|
||||
[BusTypeNvme] = GUEST_DISK_BUS_TYPE_NVME,
|
||||
#endif
|
||||
};
|
||||
|
||||
static GuestDiskBusType find_bus_type(STORAGE_BUS_TYPE bus)
|
||||
|
Loading…
Reference in New Issue
Block a user