Commit graph

164579 commits

Author SHA1 Message Date
Jinoh Kang 078b0219aa server: Update parent window region when exposing previously invisible window.
Fixes: 33617af814
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54949
2023-06-02 20:47:28 +02:00
Jinoh Kang c368dfebbb user32/tests: Test for update region after showing a child window. 2023-06-02 20:47:28 +02:00
Eric Pouech af7b97e780 dbghelp: Reimplement EnumerateLoadedModules().
- correctly taking into accoung SYMOPT_INCLUDE_32BIT_MODULES option
- converting, for 32bit modules requested from a 64bit module,
  the system32 paths into syswow64

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
2023-06-02 20:47:28 +02:00
Eric Pouech 79bae0ed37 dbghelp/tests: Add more tests for module imagename handling.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
2023-06-02 20:47:25 +02:00
Eric Pouech ed532a36b3 dbghelp/tests: Review old-wow64 expected values.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
2023-06-02 20:47:01 +02:00
Eric Pouech 76d922983d dbghelp/tests: Fix process kind detection on old Windows machines.
Signed-off-by: Eric Pouech <epouech@codeweavers.com>
2023-06-02 20:35:53 +02:00
Alexandre Julliard b337c5b1a1 ntdll: Use the default ABI for all functions on the Unix side. 2023-06-02 09:50:50 +02:00
Alexandre Julliard 48537f4e1e ntdll: Use the sysv ABI for setjmp/longjmp on the Unix side. 2023-06-02 09:35:10 +02:00
Alexandre Julliard e2fac05854 ntdll: Use the sysv ABI for the %fs allocation function. 2023-06-02 09:32:59 +02:00
Zebediah Figura 6bcfab4ca6 winebuild: Use the lretw mnemonic in wine_call_to_16().
We already use it in the __wine_spec_callfrom16_* functions.
2023-06-02 09:32:23 +02:00
Zebediah Figura 63a6f01a70 winebuild: Use segment prefixes in 16-bit stack switching code instead of writing out byte values.
Presumably at one point there were assemblers that choked on
these. However, currently we use segment prefixes elsewhere in
wine (namely, in the syscall dispatcher), and it seems fair to assume
that a sane compiler should support them.
2023-06-02 09:32:23 +02:00
Paul Gofman a56e0ba4d4 ws2_32: Test wait alertability in WSAGetOverlappedResult(). 2023-06-02 09:32:23 +02:00
Paul Gofman 98cdd828b6 ws2_32: Make wait in WSAPoll() alertable. 2023-06-02 09:32:23 +02:00
Paul Gofman 36d7bf9507 ws2_32: Make wait in connect() alertable. 2023-06-02 09:32:23 +02:00
Paul Gofman 157633229f ws2_32: Make wait in accept() alertable. 2023-06-02 09:30:00 +02:00
Alex Henrie 36cf952664 bcrypt/tests: Don't allocate inside todo_wine and free outside of it.
Fixes a warning on GCC 13.
2023-06-02 09:29:37 +02:00
Alex Henrie 870a9fcb4c iphlpapi: Add GetPerTcpConnectionEStats stub.
Based on a patch by Austin English.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52868
2023-06-02 09:29:24 +02:00
Piotr Caban 0336d66ea1 msvcr100: Fix next writer unblocking in reader_writer_lock::unlock.
Fixes regression introduced by 256c344550.
2023-06-01 22:00:19 +02:00
Michael Stefaniuc cf3815dc59 dbghelp: Remove superfluous casts to self. 2023-06-01 22:00:19 +02:00
Michael Stefaniuc 19cc1dbe56 wmvcore: Remove superfluous casts to self. 2023-06-01 22:00:19 +02:00
Michael Stefaniuc 51f8c75ceb ws2_32/tests: Remove superfluous casts to self. 2023-06-01 22:00:19 +02:00
Paul Gofman e7845fc330 kernelbase: Don't modify non-volatile regs in RaiseException() on x64. 2023-06-01 22:00:19 +02:00
Alistair Leslie-Hughes 1db53cdcbb xactengine: IXACT3EngineImpl_CreateSoundBank isn't a stub. 2023-06-01 22:00:19 +02:00
Alistair Leslie-Hughes 6a685626be xactengine: Correct XACTNOTIFICATIONTYPE_MAX value.
XACTNOTIFICATIONTYPE_WAVEBANKSTREAMING_INVALIDCONTENT is defined as 18.
2023-06-01 22:00:19 +02:00
Alistair Leslie-Hughes 77e0aae7f3 krnl386.exe16: Don't overflow when calculating size.
The application again the bug, passed 1 as the elem parameter which
doubled the memory being allocated.  When it overflowed (became negative),
the value was passed into GlobalAlloc16 which then failed.

GlobalAlloc16 takes a DWORD parameter, so the value isn't going to be truncated.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53092

Original patch by github user cracyc for winevdm.
2023-06-01 22:00:19 +02:00
Aurimas Fišeras c1588b1bfd po: Update Lithuanian translation. 2023-06-01 20:57:32 +02:00
Alexandre Julliard 7d279bcd3b include: Only declare __wine_unix_call() on the PE side. 2023-06-01 20:57:32 +02:00
Alexandre Julliard 1aa2f0d128 ntdll: Store the PE function pointers as simple void pointers.
Their prototypes are not meaningful on the Unix side.
2023-06-01 17:24:06 +02:00
Alexandre Julliard 231f1854f5 ntdll: Don't use WINAPI for KeUserModeCallback(). 2023-06-01 15:56:13 +02:00
Alexandre Julliard 091513ffaa ntdll: Don't pass arguments on the stack for user callbacks on ARM. 2023-06-01 15:56:08 +02:00
Alexandre Julliard d8c39b3d5a ntdll: Don't pass arguments on the stack for user callbacks on i386. 2023-06-01 15:56:08 +02:00
Alexandre Julliard 50ac25554c ntdll: Don't pass arguments on the stack for user callbacks on x86-64.
And convert to the sysv ABI.
2023-06-01 14:26:14 +02:00
Alexandre Julliard efa99eab0b ntdll: Don't pass arguments on the stack for user callbacks on ARM64. 2023-06-01 12:44:31 +02:00
Tim Clem 6b0836e3f1 loader: Reserve some space for 32-bit top-down allocations on 64-bit. 2023-05-31 22:50:10 +02:00
Rémi Bernon 0a33018211 user32/tests: Test more ClipCursor reset scenarios. 2023-05-31 22:50:10 +02:00
Rémi Bernon 1bf316c0d9 user32/tests: Add a helper to run a test in a process. 2023-05-31 22:50:10 +02:00
Rémi Bernon 29ac54e300 user32/tests: Zero-initialize keyboard state array. 2023-05-31 22:50:10 +02:00
Paul Gofman 596dfad38b winegstreamer: Don't pre-check sample size in wg_transform_read_mf(). 2023-05-31 22:50:10 +02:00
Rémi Bernon 4d1a331c66 winegstreamer: Use the output wg_format in CAPS sink query.
Instead of constraining the output caps to the current resolution, which
breaks when streams with different resolutions are concatenated.
2023-05-31 22:50:10 +02:00
Rémi Bernon 52387aa1a4 winegstreamer: Generate H264 timestamps using the input type frame rate.
And remove h264parse element requirement.
2023-05-31 22:50:10 +02:00
Rémi Bernon 8caaca177e winegstreamer: Use an IMFMediaType for the internal stream type. 2023-05-31 22:50:10 +02:00
Rémi Bernon 6184ac8c9f mf/tests: Add H264 decoder tests with concatenated streams. 2023-05-31 22:50:10 +02:00
Rémi Bernon 46d276188e user32: Remove now unused virtual screen helpers. 2023-05-31 22:50:10 +02:00
Davide Beatrici c899cc8215 wineoss: Use mmdevapi's AudioClient2. 2023-05-31 22:50:10 +02:00
Davide Beatrici 1d8e171674 winecoreaudio: Use mmdevapi's AudioClient2. 2023-05-31 22:50:10 +02:00
Davide Beatrici 9b8e23b69b winealsa: Use mmdevapi's AudioClient2. 2023-05-31 22:50:10 +02:00
Davide Beatrici e054f72943 winepulse: Move AudioClient2 into mmdevapi. 2023-05-31 22:50:10 +02:00
Alex Henrie 4050ceb22f iphlpapi: Add GetCurrentThreadCompartmentId stub and a test.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54599
2023-05-31 22:50:10 +02:00
Rémi Bernon 900ba82654 win32u: Use WM_WINE_CLIPCURSOR / TRUE for empty clipping rect. 2023-05-31 22:50:10 +02:00
Rémi Bernon 3bce247bd2 win32u: Add a separate function to process WM_WINE_CLIPCURSOR. 2023-05-31 22:50:10 +02:00