7 Oct
2025
7 Oct
'25
6:15 p.m.
Alexandre Julliard (@julliard) commented about dlls/windows.devices.enumeration/main.c:
IDeviceWatcher_Release( iface ); }
+static const DEVPROPCOMPKEY device_iface_default_props[] = +{ + { DEVPKEY_DeviceInterface_Enabled, DEVPROP_STORE_SYSTEM, NULL }, + { DEVPKEY_Device_InstanceId, DEVPROP_STORE_SYSTEM, NULL }, +};
I'm afraid not all compilers support that kind of thing: ``` ../wine/dlls/windows.devices.enumeration/main.c:372:7: error: initializer element is not a compile-time constant make: *** [Makefile:191506: dlls/windows.devices.enumeration/main.o] Error 1 ``` (clang in this case). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9045#note_117864