- 01 Dec, 2022 21 commits
-
-
Alexandre Julliard authored
-
Zebediah Figura authored
Since multiple interfaces can hold onto it, we need to refcount it. In order to do this just refcount the parent device, and close the handle only when the parent device refcount reaches 0.
-
Brendan Shanks authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54009
-
Brendan Shanks authored
-
Brendan Shanks authored
-
Alex Henrie authored
-
Alex Henrie authored
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Anton Baskanov authored
Signed-off-by: Anton Baskanov <baskanov@gmail.com>
-
Ziqing Hui authored
We can see that subtype returned by IWMMediaProps is different from the one returned by IWMOutputMediaProps.
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
And that it also allocates the samples.
-
Rémi Bernon authored
-
- 30 Nov, 2022 19 commits
-
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Gabriel Ivăncescu authored
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53530Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52910Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
For some reason, only pure js objects are passed in mshtml's jscript engine. Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Otherwise, script56.chm's javascript will keep reloading the image and triggering onload events non-stop. It protects against this using a variable "noReentry", which is only set temporarily while setting the source, so it expects it to be triggered synchronously. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53927Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Gabriel Ivăncescu authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53999Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
-
Ivo Ivanov authored
Also fixes a segmentation fault on exit of winedevice.exe. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52213
-
Zebediah Figura authored
-
Robert Wilhelm authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53678Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Rémi Bernon authored
This effectively reverts 2be9b0ff, which incorrectly removed the flag, when the reallocation failures the tests showed were coming from an underlying LFH in-place reallocation failure. Thus, it restores todo_wine where appropriate while removing other todos for sizes outside of the LFH block size range. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53996
-
Rémi Bernon authored
In place reallocation is possible, although it depends on the underlying heap strategy. The LFH heap usually fails as it doesn't blocks to grow or shrink out of their size class. Larger block (LFH is limited to 16K blocks), more often allow in-place reallocation, and some native DLLs depend on this. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53996
-
Rémi Bernon authored
Making the GlobalReAlloc tests more sensible, as they fail to reallocate when the block was allocated with the LFH and the new size wouldn't. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54012
-
Rémi Bernon authored
-