Fixes: cc82780c22db31fed4da8b84e85c01652a995490
--
v3: winegstreamer: Add missing format fields to WMA support check.
winegstreamer: Recognize MFAudioFormat_MPEG and MFAudioFormat_MP3.
https://gitlab.winehq.org/wine/wine/-/merge_requests/5611
Align the Chinese text output of wine cmd
before:
![before.png](/uploads/903d871e44394d1ad9e9f032cc6941bd/before.png)
after:
![after.png](/uploads/f155f2d59a9663ea67497002e24d7708/after.png)
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/5623
Non-"browsable" volumes or those without filesystem mount points are invisible to users and should not be reflected automatically into Wine.
--
v2: mountmgr.sys: Do not add drive letters or volumes for macOS volumes without mount paths.
mountmgr.sys: Do not create drive letters or volumes for unbrowsable macOS volumes.
https://gitlab.winehq.org/wine/wine/-/merge_requests/5618
Fixes Clang warning on 32-bit platforms.
Clang is more strict about `-Wformat` than GCC. For `%I`, it expects the exact `size_t` type, which is `int` on 32-bit targets, while `SIZE_T` is `long`. For that reason, we currently disable those warnings by not using format attribute on MSVC targets. This is not enough for printf, which is a builtin and has the attribute applied anyway. Using trace, like we do in all other cases, "fixes" it.
I plan to make clang less strict about those cases, which would also fix this problem and allow us to enable format attribute in all relevant functions. However, on current versions of clang, this is one of the last few blockers to support `-Werror`, so it would be nice to have it fixed one way or another. If `printf` is preferred here for some reason, we could also just add an explicit `size_t` cast when printing the size.
--
v2: d3dx9/tests: Remove xfile dumping functionality.
https://gitlab.winehq.org/wine/wine/-/merge_requests/5629
Fixes Clang warning on 32-bit platforms.
Clang is more strict about `-Wformat` than GCC. For `%I`, it expects the exact `size_t` type, which is `int` on 32-bit targets, while `SIZE_T` is `long`. For that reason, we currently disable those warnings by not using format attribute on MSVC targets. This is not enough for printf, which is a builtin and has the attribute applied anyway. Using trace, like we do in all other cases, "fixes" it.
I plan to make clang less strict about those cases, which would also fix this problem and allow us to enable format attribute in all relevant functions. However, on current versions of clang, this is one of the last few blockers to support `-Werror`, so it would be nice to have it fixed one way or another. If `printf` is preferred here for some reason, we could also just add an explicit `size_t` cast when printing the size.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/5629
First part of Proton shared memory series. The full branch can be seen at https://gitlab.winehq.org/rbernon/wine/-/commits/mr/shared-memories.
--
v35: win32u: Use the desktop shared data for GetCursorPos.
server: Move the last cursor time to the desktop session object.
server: Move the cursor position to the desktop session object.
win32u: Open desktop shared objects from session mapping.
server: Return the desktop object info in get_thread_desktop.
server: Allocate shared session object for desktops.
win32u: Open the global session shared mapping.
include: Add ReadNoFence64 inline helpers.
server: Create a global session shared mapping.
https://gitlab.winehq.org/wine/wine/-/merge_requests/3103
This MR improves the handling of numpad keys for drivers using KBDTABLES (only the Wayland driver at this point). It achieves this by:
1. Allowing drivers to send only the scancode in keyboard events, with win32u performing the scan->vkey mapping internally. A nice side effect of this change is that it fixes a few user32 input test TODOs.
2. Enhancing wineserver to read extended KBD vkey attributes and perform numpad key mapping depending on modifier state.
3. Providing default VK_NUMPAD* -> WCHAR mappings in win32u.
--
v2: winewayland.drv: Populate vkey to wchar entry for VK_DECIMAL.
server: Send numpad virtual keys if NumLock is active.
win32u: Store the full KBD vkey information in kbd_tables_init_vsc2vk.
win32u: Allow drivers to send only the scan code for keyboard events.
https://gitlab.winehq.org/wine/wine/-/merge_requests/5601