Alexandre Julliard pushed to branch master at wine / wine
Commits:
b93e20b4 by Hans Leidekker at 2025-06-20T23:21:43+02:00
widl: Use a define for maximum name length.
- - - - -
5eb43ebf by Hans Leidekker at 2025-06-20T23:21:43+02:00
widl: Add rows for the overload attribute.
- - - - -
6a4d6a18 by Hans Leidekker at 2025-06-20T23:21:43+02:00
widl: Add rows for the default_overload attribute.
- - - - -
aec68c20 by Hans Leidekker at 2025-06-20T23:21:44+02:00
widl: Add rows for the deprecated attribute.
- - - - -
2 changed files:
- tools/widl/metadata.c
- tools/widl/widltypes.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/422d67639a06aafaf7b094330a6fd…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/422d67639a06aafaf7b094330a6fd…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
1a9b61d2 by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
ntdll: Use explicit ACTIVATION_CONTEXT type instead of HANDLE.
- - - - -
351a65e7 by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
kernel32/tests: Add tests for normal activation context stack frame flags.
Test that the flags for normal activation context stack frames has 0x8, which is probably to note
that a frame is allocated from the heap according to later tests.
- - - - -
7b29dc90 by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
ntdll: Set and check 0x8 flag for activation context stack frames.
Prepare for RtlActivateActivationContextUnsafeFast(), which adds frames with flags 0x20. Normal
frame flags are 0x28. So 0x8 is most likely to note that it's callee-allocated and needs to be freed
in RtlFreeActivationContextStack(). Whereas missing 0x8 probably means a frame is caller-allocated.
- - - - -
20db80f2 by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
ntdll: Implement RtlActivateActivationContextUnsafeFast().
- - - - -
4f51853e by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
ntdll: Implement RtlDeactivateActivationContextUnsafeFast().
- - - - -
422d6763 by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
kernel32/tests: Add tests for RtlActivateActivationContextUnsafe() and RtlDeactivateActivationContextUnsafeFast().
- - - - -
7 changed files:
- dlls/kernel32/tests/actctx.c
- dlls/kernelbase/loader.c
- dlls/ntdll/actctx.c
- dlls/ntdll/ntdll.spec
- dlls/ntdll/ntdll_misc.h
- dlls/ntdll/thread.c
- include/winternl.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/cf71625b45bf51ea17f812a936f43…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/cf71625b45bf51ea17f812a936f43…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
cf71625b by Zhiyi Zhang at 2025-06-20T23:21:43+02:00
user32: Add ScheduleDispatchNotification() stub.
React Native apps use user32.2582 and expect the return value to be non-zero.
- - - - -
8 changed files:
- dlls/user32/tests/input.c
- dlls/user32/user32.spec
- dlls/win32u/input.c
- dlls/win32u/main.c
- dlls/win32u/win32syscalls.h
- dlls/win32u/win32u.spec
- dlls/wow64win/user.c
- include/ntuser.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/cf71625b45bf51ea17f812a936f439…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/cf71625b45bf51ea17f812a936f439…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
25f88171 by Alexandre Julliard at 2025-06-20T21:36:17+02:00
mountmgr: Use the \\?\unix prefix to open device files.
- - - - -
a34ac3fd by Alexandre Julliard at 2025-06-20T21:36:17+02:00
appwiz.cpl: Store the registry key name in Unicode.
- - - - -
819c9e37 by Alexandre Julliard at 2025-06-20T21:36:17+02:00
appwiz.cpl: Use GetFinalPathNameByHandleW to get the DOS path of the package to install.
- - - - -
642b7a42 by Alexandre Julliard at 2025-06-20T23:21:43+02:00
user32: Add a macro to define the list of user callbacks.
- - - - -
9 changed files:
- dlls/appwiz.cpl/addons.c
- dlls/appwiz.cpl/appwiz.h
- dlls/mountmgr.sys/device.c
- dlls/user32/user_main.c
- dlls/user32/user_private.h
- dlls/user32/winproc.c
- dlls/win32u/syscall.c
- dlls/wow64win/user.c
- include/ntuser.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/52479b4bab861264dcfbd58580244…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/52479b4bab861264dcfbd58580244…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
f5ed6920 by Paul Gofman at 2025-06-20T10:40:36+02:00
avifil32/tests: Test creating AVI file with OF_CREATE but without access mode.
- - - - -
ad580c7f by Paul Gofman at 2025-06-20T10:40:36+02:00
avifil32: Assume OF_WRITE for OF_CREATE in AVIFileOpenW().
- - - - -
52479b4b by Paul Gofman at 2025-06-20T10:40:36+02:00
avifil32: Fix dwLength counting for fixed size samples.
- - - - -
3 changed files:
- dlls/avifil32/api.c
- dlls/avifil32/avifile.c
- dlls/avifil32/tests/api.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d4a1b3b57c2182beb72385d77d917…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d4a1b3b57c2182beb72385d77d917…
You're receiving this email because of your account on gitlab.winehq.org.