17 Oct
2024
17 Oct
'24
3:05 a.m.
Elizabeth Figura (@zfigura) commented about dlls/winebth.sys/winebluetooth.h:
+ UCHAR minor; +}; + +void winebluetooth_radio_free( winebluetooth_radio_t radio ); +static inline BOOL winebluetooth_radio_equal( winebluetooth_radio_t r1, winebluetooth_radio_t r2 ) +{ + return r1.handle == r2.handle; +} + +typedef struct +{ +#ifdef WINE_UNIX_LIB + void *handle; +#else + UINT_PTR handle; +#endif Why do this?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6621#note_85262