- 30 Jul, 2022 40 commits
-
-
Paul Gofman authored
-
Michael Müller authored
FIXME: Reimplement wined3d_device_get_available_texture_mem without using the context on the main thread.
-
Michael Müller authored
-
Sebastian Lackner authored
-
Mark Harmstone authored
-
Sebastian Lackner authored
-
Michael Müller authored
-
Hao Peng authored
Add a feature to winecfg. User can double click in dlls list to edit overides of selected item.
-
Michael Müller authored
-
Michael Müller authored
-
Michael Müller authored
Pythons ssl module raises an exception if the CA certificate store is empty. Wine currently doesn't add any certificates to this store and this patch tries to solve the problem by adding a dummy certificate. The certificate shouldn't have any effect though as it is invalid by design. The dates were choosen in a way that this certificate can never be valid: Not Before: Mar 13 02:13:31 2016 GMT Not After : Mar 12 02:13:31 2016 GMT
-
Michael Müller authored
-
Dmitry Timoshkov authored
-
Dmitry Timoshkov authored
-
Dmitry Timoshkov authored
-
Alistair Leslie-Hughes authored
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
-
Alistair Leslie-Hughes authored
windows.networking.connectivity: IConnectionProfile GetNetworkConnectivityLevel always return internet access
-
Alistair Leslie-Hughes authored
-
Alistair Leslie-Hughes authored
This is a temp solution until the IDL can used for registration.
-
Alistair Leslie-Hughes authored
v2: Fixed QueryInterfaces Based off patch by Esdras Tarsis.
-
Esdras Tarsis authored
v2: Add Proper QueryInterface Fixed Initial Reference Count value.
-
Esdras Tarsis authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46534Signed-off-by: Esdras Tarsis <esdrastarsis@gmail.com>
-
Alistair Leslie-Hughes authored
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
-
Alistair Leslie-Hughes authored
-
Alistair Leslie-Hughes authored
This shows that the data returned by the EnumKey call isn't the same type as vbscript. At a source leve EnumKey returns a VT_BSTR|VT_ARRAY whereas vbscript converts it a VT_ARRAY|VT_VARIANT*.
-
Alistair Leslie-Hughes authored
-
Alistair Leslie-Hughes authored
This isn't correct and the patch 4 show that this is the case. The array being returned by Invoke, needs to convert the datatype on return. Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
-
Alistair Leslie-Hughes authored
Wine-bug: https://bugs.winehq.org/show_bug.cgi?id=51120 Wine-bug: https://bugs.winehq.org/show_bug.cgi?id=39463
-
Mark Jansen authored
This patch supersedes both '[2/2] version: Test for VerQueryValueA' and '[1/2] version: Fix wrong length reported when selecting a block. (resend 2)', as it is a better tests, and proves the fix to not work fully. The patch shows a difference in handling between wine's VerQueryValue, and windows' VerQueryValue when selecting a 'BLOCK' object. Implemented pointer checking and commented the binary structure as suggested by nsivov from #winehackers.
-
Dmitry Timoshkov authored
Testcase by Michael Müller <michael@fds-team.de>.
-
Gabriel Ivăncescu authored
Windows only sends the activation messages and hooks once, until the SetActiveWindow completes for that window. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
When activating a window and sending activation messages to the window procedure, Windows avoids a recursive loop by not sending more of these messages or hooks while it's still activating the window. Some applications actually depend on this behavior, so it is needed. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46274Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Rémi Bernon authored
This makes relative raw input independent from cursor speed, as it is the case on Windows. Absolute raw input is already translated to virtual desktop space, and cursor speed is meaningless in this case. This does not support mixed relative/absolute X/Y axis.
-
Rémi Bernon authored
-
Rémi Bernon authored
Valuator names aren't well specified, and although they usually are Rel X/Y or Abs X/Y, there are cases where the X/Y names are something else. Just assume that the first two valuators are the X/Y axes, as it seems to be generally the case.
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
For rawinput messages, as user32 is currently only expecting relative motion.
-
Rémi Bernon authored
We still need to send "normal" input from the clipping window thread to trigger low-level hooks callbacks when clipping cursor. This is for instance used in our dinput implementation.
-
Rémi Bernon authored
-