17 Oct
2024
17 Oct
'24
3:05 a.m.
Elizabeth Figura (@zfigura) commented about dlls/winebth.sys/winebluetooth.h:
+ struct winebluetooth_watcher_event_radio_added radio_added; +}; + +struct winebluetooth_watcher_event +{ + enum winebluetooth_watcher_event_type event_type; + union winebluetooth_watcher_event_data event_data; +}; + +NTSTATUS winebluetooth_watcher_init( winebluetooth_watcher_t *watcher ); +NTSTATUS winebluetooth_watcher_close( winebluetooth_watcher_t watcher ); + +enum winebluetooth_event_loop_status +{ + WINEBLUETOOTH_EVENT_LOOP_STATUS_WATCHER_EVENT, +}; What's the point of this enum? I cheated and looked ahead, and you never add any other elements to it.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6621#note_85261