Davide Beatrici (@davidebeatrici) commented about dlls/mmdevapi/unixlib.h:
> struct release_capture_buffer_params
> {
> stream_handle stream;
> - UINT32 done;
> + BOOL done;
This was supposed to remain `UINT32`, I got confused by the variable's name.
`BOOL` is basically the same data type, but it should only be used for flags.
`BOOLEAN` would be better for that though, as it's single-byte.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/600#note_8068
this gets the YSDrv service to start successfully (with the MmAllocateContiguousMemorySpecifyCache semi-stub)
this service is used by the nox android emulator
--
v8: add KeInsertQueueDpc stub
https://gitlab.winehq.org/wine/wine/-/merge_requests/778
On Thu Sep 8 22:30:41 2022 +0000, Santino Mazza wrote:
> Are the pipelines working correctly? I think it leaves some files
> modified and it fails when rebasing to the next commit.
yeah I have had the same issue numerous times, it's really annoying, for the time being I would just squash the commits (that are built on top of upstream, not the upstream ones themselves), it usually fixes the problem
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/810#note_8044