Commit Graph

3145 Commits

Author SHA1 Message Date
Alexandre Julliard 05fa21e188 makefiles: Remove some unused variables.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-12-05 10:47:05 +01:00
Sebastian Lackner a0ab2a7b0c loader: Implement preloader for macOS.
Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-12-04 11:10:09 +01:00
Alexandre Julliard 1582ae6b04 configure: Allow building a WoW64 tree inside the source directory.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-28 21:10:11 +01:00
Alexandre Julliard 123b92373d configure: Don't create fonts and server symlinks in the WoW64 build tree.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-28 21:10:07 +01:00
Alistair Leslie-Hughes 00b08fad99 comsvcs: Add initial tests.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-27 19:38:48 +01:00
Nikolay Sivov 4e22ba2627 shcore: Add process reference API.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-27 19:32:15 +01:00
Alexandre Julliard d84de4ca00 makefiles: Support specifying installed files in the top-level makefile.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-27 14:48:04 +01:00
Alexandre Julliard faac33827c makefiles: Create 64-bit winewrapper symlink in the WoW64 build tree.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-26 14:21:57 +01:00
Alexandre Julliard 013c51aca0 makefiles: Create 64-bit wine loader symlinks in the WoW64 build tree.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-26 14:21:29 +01:00
Alexandre Julliard ea9253d6d3 Release 3.21.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-23 21:16:24 +01:00
Alexandre Julliard d076ff3c12 Revert "makefiles: Only generate proxy code for the target architecture."
This reverts commit ee206a3760.
It's the default widl behavior now.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-14 23:11:31 +01:00
Alexandre Julliard e9e12bda62 Release 3.20.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-09 21:10:16 +01:00
Andrey Gusev 03fd289bed api-ms-win-ntuser-sysparams-l1-1-0: Add dll.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-05 19:12:12 +01:00
Andrey Gusev 2f886e2d04 api-ms-win-core-processthreads-l1-1-3: Add dll.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46086
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-05 19:12:12 +01:00
Andrey Gusev deb35e901a api-ms-win-core-winrt-string-l1-1-1: Add dll.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46085
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-11-05 19:12:12 +01:00
Louis Lenders 73c0ec29eb qwave: Add new stub dll.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46066
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-10-31 17:16:15 +01:00
Alexandre Julliard d279bc2493 Release 3.19.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-10-26 21:22:11 +02:00
Alexandre Julliard 3f4455c0f0 Release 3.18.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-10-13 00:59:01 +02:00
Jacek Caban 2e754a6527 configure: Get rid of no longer used SOCKET_LIBS.
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-10-05 13:44:32 -05:00
Zebediah Figura ee206a3760 makefiles: Only generate proxy code for the target architecture.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-10-04 11:15:07 -05:00
Alexandre Julliard f11563c65f Release 3.17.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-28 21:16:16 +02:00
Jactry Zeng 6dd6c4558b msftedit: Add tests for interfaces.
Signed-off-by: Jactry Zeng <jzeng@codeweavers.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-28 11:05:25 +02:00
Alex Henrie 48f108345a msvcrt: Use isnan instead of isnanf.
This resolves several warnings when compiling with MinGW because isnanf
is not in MinGW's math.h (it's not a standard C function). On the other
hand, isnan is a widely available C99 macro designed for both floats and
doubles. We also have an isnan implementation in libs/port/isnan.c for
pre-C99 compilers.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-27 11:03:41 +02:00
Alexandre Julliard 64d9f309b7 Release 3.16.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-14 21:19:10 +02:00
Gijs Vermeulen 43d04a3289 virtdisk/tests: Add GetStorageDependencyInformation tests.
Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-13 19:25:09 +02:00
André Hentschel 18461f64f6 api-ms-win-security-cryptoapi-l1-1-0: Add dll.
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-07 18:18:03 +02:00
André Hentschel 82f0bb3754 api-ms-win-core-stringloader-l1-1-1: Add dll.
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-07 18:17:53 +02:00
André Hentschel be974da9f6 api-ms-win-core-comm-l1-1-0: Add dll.
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-07 18:17:43 +02:00
Nikolay Sivov 5144584553 opcservices/tests: Add some tests.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-09-03 15:52:35 +02:00
Alexandre Julliard 2346a4012a Release 3.15.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-08-31 21:24:15 +02:00
Nikolay Sivov d2c5d0171a opcservices: Add a stub IOpcFactory.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-08-30 19:55:24 +02:00
Alexandre Julliard c698682b32 Release 3.14.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-08-17 19:30:47 +02:00
Andrey Gusev 506ae87ac0 api-ms-win-devices-config-l1-1-0: Add dll.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-08-14 11:58:55 +02:00
Alexandre Julliard 25cc380b8e Release 3.13.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-07-20 19:12:26 +02:00
Andrew Eikum 10035f1b97 winemac: Implement Vulkan driver on top of MoltenVK.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-07-13 17:20:43 +02:00
Ken Thomases 357017cd87 winemac: Implement WineMetalView class.
Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-07-13 17:20:43 +02:00
Alexandre Julliard 8ef224fa43 Release 3.12.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-07-09 22:58:15 +02:00
Zebediah Figura 8dc0d36717 dbghelp/tests: Add a simple test for StackWalk64().
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-07-05 19:57:16 +02:00
Hans Leidekker e865a9d66a configure: Allow building bcrypt with GnuTLS support on macOS.
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-28 18:26:45 +02:00
Alexandre Julliard 58c49279f5 Release 3.11.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-23 01:30:20 +02:00
Józef Kucia 99d68bc0de ninput: Implement CreateInteractionContext().
Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-22 13:42:18 +02:00
Józef Kucia 4a332a7692 vulkan-1/tests: Add tests.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-21 14:20:57 +02:00
Alexandre Julliard e470221dca Release 3.10.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-11 20:08:39 +02:00
Austin English 4739647405 dism: Add stub program.
Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-05 09:25:55 +02:00
Fabian Maurer 914d387214 find: Add stub program.
Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-01 19:54:33 +02:00
Fabian Maurer 96a6165776 fc: Add stub program.
Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-06-01 19:54:08 +02:00
Alexandre Julliard 59994c9409 Release 3.9.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-05-25 20:38:57 +02:00
Józef Kucia 281bdcac73 configure: Check for libvkd3d.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-05-24 09:11:23 +02:00
Zebediah Figura cae0e0b6e7 mp3dmod/tests: Add some tests for decoding.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-05-14 12:11:48 +02:00
Alexandre Julliard 7280f7fb74 Release 3.8.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2018-05-11 20:20:21 +02:00