Alexandre Julliard pushed to branch master at wine / wine
Commits:
a83edcd3 by Connor McAdams at 2025-02-18T21:05:38+01:00
quartz/tests: Add a test for resetting stream position after receiving EC_COMPLETE.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
4e8a0aca by Connor McAdams at 2025-02-18T21:05:38+01:00
quartz/filtergraph: Allow changing stream position after receiving EC_COMPLETE.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
2 changed files:
- dlls/quartz/filtergraph.c
- dlls/quartz/tests/filtergraph.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/70cbc02e26907c5f2d89d129e68c4…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/70cbc02e26907c5f2d89d129e68c4…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
fefd6e24 by Alexandre Julliard at 2025-02-18T17:30:23+01:00
makefiles: Link to the wine loader in the tools directory if it was built.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57847
- - - - -
7620f21f by Alexandre Julliard at 2025-02-18T17:32:11+01:00
makefiles: Generate the wow64 symlinks from makedep.
- - - - -
9cd7ddaa by Alexandre Julliard at 2025-02-18T17:37:42+01:00
makefiles: Generate more of the re-configure rules from makedep.
- - - - -
70cbc02e by Alexandre Julliard at 2025-02-18T17:42:24+01:00
make_unicode: Update timezone data source to version 2025a.
- - - - -
5 changed files:
- configure
- configure.ac
- dlls/kernelbase/kernelbase.rgs
- tools/make_unicode
- tools/makedep.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7165437caadcc559d6625f6fd42ad…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7165437caadcc559d6625f6fd42ad…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
7165437c by Alexandros Frantzis at 2025-02-18T17:29:50+01:00
winewayland: Don't crash on text input done events without focus.
Some compositors (e.g., kwin) will send a done event for every commit,
regardless of the focus state of the text input. This behavior is
arguably out of spec, but otherwise harmless, so just ignore the new
state in such cases.
- - - - -
1 changed file:
- dlls/winewayland.drv/wayland_text_input.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/7165437caadcc559d6625f6fd42adb…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/7165437caadcc559d6625f6fd42adb…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
1fd0a9b8 by Jinoh Kang at 2025-02-18T13:56:25+01:00
kernel32/tests: Add basic tests for internal flags of modules loaded with DONT_RESOLVE_DLL_REFERENCES.
- - - - -
99e91f1c by Jinoh Kang at 2025-02-18T13:56:25+01:00
kernel32/tests: Test for unexpected LDR_PROCESS_ATTACHED flag in import dependency loaded with DONT_RESOLVE_DLL_REFERENCES.
- - - - -
65c11e22 by Jinoh Kang at 2025-02-18T13:56:25+01:00
kernel32/tests: Test for unexpected loader notification for import dependency loaded with DONT_RESOLVE_DLL_REFERENCES.
- - - - -
393406d9 by Jinoh Kang at 2025-02-18T13:56:25+01:00
ntdll: Skip DLL initialization and ldr notification entirely if DONT_RESOLVE_DLL_REFERENCES is set.
- - - - -
2346cfd4 by Jinoh Kang at 2025-02-18T13:56:25+01:00
ntdll: Remove redundant LDR_DONT_RESOLVE_REFS checks before calling process_attach().
This is now checked by process_attach() itself.
- - - - -
3 changed files:
- dlls/kernel32/tests/loader.c
- dlls/kernel32/tests/module.c
- dlls/ntdll/loader.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/14cb27826ced5129f7b7f9f11c57c…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/14cb27826ced5129f7b7f9f11c57c…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
aaa73dd5 by Jinoh Kang at 2025-02-18T12:06:13+01:00
include: Fix ReadNoFence64 on i386.
64-bit volatile loads are not atomic on i386. Both i686-w64-mingw32-gcc
and x86 MSVC splits 64-bit loads into a pair of load ops.
Fix this by using a FILD/FISTP pair, which is also used to implement C11
atomic_load() by i686-w64-mingw32-gcc.
Fixes: f82b1c1fcf770a5d6fa02c3f286282be79a201b8
- - - - -
45563dd1 by Jinoh Kang at 2025-02-18T12:06:16+01:00
server: Fix incorrect usage of __WINE_ATOMIC_STORE_RELEASE in SHARED_WRITE_BEGIN/SHARED_WRITE_END.
64-bit volatile stores are not atomic on i386. Both
i686-w64-mingw32-gcc and x86 MSVC splits 64-bit stores into a pair of
store ops.
Fix this by using a FILD/FISTP pair, which is also used to implement C11
atomic_store() by i686-w64-mingw32-gcc.
Fixes: fac940dfac314c2b1c120cf9ff8503259153c5a0
- - - - -
14cb2782 by Jinoh Kang at 2025-02-18T12:06:17+01:00
include: Prevent misuse of __WINE_ATOMIC_* helper macros for non-atomic large accesses.
- - - - -
2 changed files:
- include/winnt.h
- server/file.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e0b7cf3ac4a1bcc54aff898764cf3…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e0b7cf3ac4a1bcc54aff898764cf3…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
02d7a9cd by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Introduce a new add_virtual_mode helper.
- - - - -
9be2e3e4 by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Pass host enumerated display modes to get_virtual_modes.
- - - - -
abf3e6b4 by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Keep virtual screen sizes in a SIZE array.
- - - - -
97312291 by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Introduce a new get_screen_sizes helper.
- - - - -
43648d97 by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Check generated sizes with the maximum display mode.
- - - - -
8f85c444 by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Generate fake resolution list from the host modes.
- - - - -
e0b7cf3a by Rémi Bernon at 2025-02-18T11:57:50+01:00
win32u: Generate modes for the host native frequency.
In addition to 60Hz modes.
- - - - -
1 changed file:
- dlls/win32u/sysparams.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f9c96a5a7a5b8fc1066927e247a7a…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f9c96a5a7a5b8fc1066927e247a7a…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
5ec87348 by Dmitry Timoshkov at 2025-02-18T11:57:12+01:00
oleaut32: Fix logic for deciding whether type description follows the name.
It looks like the lowest bit actually indicates whether type description
follows the name, and since the name offsets are always aligned that makes
sense.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
12c79c33 by Dmitry Timoshkov at 2025-02-18T11:57:14+01:00
oleaut32: 'typekind' is the last field of SLTG_OtherTypeInfo structure.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
fc652439 by Dmitry Timoshkov at 2025-02-18T11:57:15+01:00
oleaut32: Implement decoding of SLTG help strings.
Based on a patch by Sebastian Lackner <sebastian(a)fds-team.de>.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
11a05834 by Dmitry Timoshkov at 2025-02-18T11:57:17+01:00
oleaut32: Add support for decoding SLTG function help strings.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
f9c96a5a by Dmitry Timoshkov at 2025-02-18T11:57:17+01:00
oleaut32: Add support for decoding SLTG variable help strings.
Signed-off-by: Dmitry Timoshkov <dmitry(a)baikal.ru>
- - - - -
2 changed files:
- dlls/oleaut32/typelib.c
- dlls/oleaut32/typelib.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b5ae865c8c693f706626578411078…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b5ae865c8c693f706626578411078…
You're receiving this email because of your account on gitlab.winehq.org.