Alexandre Julliard pushed to branch master at wine / wine
Commits:
61d17af8 by Nikolay Sivov at 2025-06-18T21:50:50+02:00
widl: Always use NdrClientCall2() for interpreted stubs.
NdrClientCall() should only be used in 32-bit mode when
Oi or Oic stub optimizations are used. Currently our interpreted
mode targets Oicf mode and other levels are not supported.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
fa3b03d9 by Nikolay Sivov at 2025-06-18T21:50:50+02:00
widl: Do not write "const" modifiers for _PARAM_STRUCT fields.
The issue comes from per-field structure copy that we generate
on 32-bit. For non-pointer fields like "const int" this breaks
compilation when assigning to a const field. The best solution
would be to remove local struct variable completely and pass
first argument address as a stack address. This is what midl
does. My understanding is that doing it midl way used to break
on some compilers, and we have to keep the copy. Once we encounter
pointer type that needs such copy, we'll have to patch it more
to cast the const away for example.
Such type modification matches what midl does for structures in _Thunk's,
so the fix itself is correct.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
3925de24 by Piotr Caban at 2025-06-18T21:50:50+02:00
include: Add errlup.idl.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
5 changed files:
- dlls/msdaps/usrmarshal.c
- include/Makefile.in
- + include/errlup.idl
- include/oledb.idl
- tools/widl/typegen.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e51d0d68cf889ee1540fc4aa237d2…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e51d0d68cf889ee1540fc4aa237d2…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
78e5c270 by Esme Povirk at 2025-06-18T21:50:50+02:00
gdiplus/tests: Region hit-testing is done in device coordinates.
- - - - -
fa1e0df1 by Esme Povirk at 2025-06-18T21:50:50+02:00
gdiplus: Use graphics transform in GdipIsVisibleRegionPoint.
- - - - -
e51d0d68 by Esme Povirk at 2025-06-18T21:50:50+02:00
gdiplus: Do not create HRGN in GdipIsVisibleRegionPoint.
- - - - -
2 changed files:
- dlls/gdiplus/region.c
- dlls/gdiplus/tests/region.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/de0fc7fd95074cfdeb032d36246c5…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/de0fc7fd95074cfdeb032d36246c5…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
8c9c91cc by Charlotte Pabst at 2025-06-18T20:25:22+02:00
mf: Clear pending MFT stream requests when flushing.
Before this, stopping and restarting the media session
could cause MFT streams to get stuck in the "already pending"
state, which would lead to no more samples getting delivered.
- - - - -
4bad38b7 by Charlotte Pabst at 2025-06-18T20:25:25+02:00
Revert "mf: Release pending items when sample grabber is stopped.".
This reverts commit 18c0dd7390b354d2e505e54cd3f3f9b08226b265.
The actual bug that broke sample delivery was in mf session code.
This commit is faulty since the Flush() method - which is called
at session Stop, but runs after sample_grabber_set_state - already
releases pending items, while processing markers immediately.
- - - - -
2 changed files:
- dlls/mf/samplegrabber.c
- dlls/mf/session.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/af35741d3681f21222a85900b54d9…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/af35741d3681f21222a85900b54d9…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
5b0126f9 by Alexandre Julliard at 2025-06-18T15:15:09+02:00
ntdll: Add a helper to return both NT and Unix names to open a file.
- - - - -
4b2d7924 by Alexandre Julliard at 2025-06-18T15:15:09+02:00
ntdll: Make get_redirect() static.
- - - - -
dabc761a by Alexandre Julliard at 2025-06-18T20:20:59+02:00
ntdll: Try to build a proper NT name when opening files with \??\unix.
- - - - -
af35741d by Alexandre Julliard at 2025-06-18T20:20:59+02:00
server: Return the NT file name in ObjectNameInformation for file objects.
- - - - -
9 changed files:
- dlls/ntdll/unix/file.c
- dlls/ntdll/unix/loader.c
- dlls/ntdll/unix/process.c
- dlls/ntdll/unix/registry.c
- dlls/ntdll/unix/unix_private.h
- server/change.c
- server/fd.c
- server/file.c
- server/file.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b1b5315c1334bf96b99071a98beab…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/b1b5315c1334bf96b99071a98beab…
You're receiving this email because of your account on gitlab.winehq.org.