Needed by Paint.NET installer. Fortunately, it doesn't need a full implementation.
**Tests**
`0x80000005` is defined as `E_POINTER` in the Windows SDK wrapped with `#if defined(_WIN32) && !defined(_MAC)`
In my Windows 10 22H2 VM the tests are always consistent and the refs for `IDispatcherQueue_Release` and `IDispatcherQueueController_Release` are 1 and 0, respectively. But the testbot VMs are flaky, specifically when creating a dispatcher queue on a dedicated thread. However, when checking the box `Report successful tests (WINETEST_REPORT_SUCCESS)` it seems to succeed more reliably:
- https://testbot.winehq.org/JobDetails.pl?Key=158092
- https://testbot.winehq.org/JobDetails.pl?Key=158096
In the last testbot attempt, `IAsyncInfo_get_Status` failed and returned `Started`:
- https://testbot.winehq.org/JobDetails.pl?Key=158098&f307=exe64.report#k307
Adding a `broken` tag to the ref tests or even removing them is an option, but I'm not sure what to do about the failing `IAsyncInfo_get_Status` test.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/7928
Follow-up of !2786, which appears to have been abandoned.
--
v23: ws2_32/tests: Add test for AF_UNIX sockets
server: Fix getsockname() and accept() on AF_UNIX sockets.
server: Introduce error when attempting to create a SOCK_DGRAM AF_UNIX socket.
server: Allow for deletion of socket files.
ws2_32: Add support for AF_UNIX sockets.
ws2_32: Add afunix.h header.
https://gitlab.winehq.org/wine/wine/-/merge_requests/7650
If ClipCursor is called while the seat doesn't have a pointer and the
call qualifies for locking the pointer, it would have tried to lock a
null wl_pointer.
For example, I'm launching a fullscreen application (which causes ClipCursor calls on startup) in a headless compositor before I launch my virtual keyboard/pointer client. While the pointer is deinitialized and there cannot be a focused hwnd, the cursor wl_surface will not be set, making it qualify for pointer locking.
--
v2: winewayland: Require wl_pointer for pointer constraints.
https://gitlab.winehq.org/wine/wine/-/merge_requests/7857