mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
f4be6dc36f
* [MSIEXEC] Sync msiexec to wine-9.8 * [WINESYNC] msi: Disable FS redirection for temporary file in cabinet_copy_file(). wine commit id a58c6251870dfb7d214464e709bbbc9ca649b900 by Paul Gofman <pgofman@codeweavers.com> * [WINESYNC] msi/tests: Correct a couple of failure messages in test_msirecord. wine commit id 2fde0a3f5c233b0ea1637f409998ce4ee85d28a7 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Use the wcsdup function instead of reimplementing it. wine commit id 7cc7a6defc08d4de7574b7a75d574c3ab1f32db8 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Use _O_* constants from fcntl.h instead of redefining them. wine commit id b07c95e79cdf6ae26c5170daa481ad160e0ce76a by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Remove wrappers around CRT memory allocation functions. wine commit id d920aa81ad0c4618c27ebd7e9863618e988328e0 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Initialize all members of WINTRUST_DATA. The pSignatureSettings field was not unitilized so it got a random value from the stack causing a later crash when it was dereferenced in Wintrust (SoftPubloadSignature). wine commit id 904bedb3e96bc68101652e151db102532399abe8 by Philip K. Gisslow <ripxorip@gmail.com> * [WINESYNC] msi: Fix memory leak on realloc failure in create_diff_row_query (cppcheck). wine commit id 3e231d0f36a56ce991c7edbb6ae7845094e8417e by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Fix memory leak on realloc failure in msi_get_window_text (cppcheck). wine commit id 6c1dd0f2c5669e084eb1f84571c38761a97c0970 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Fix memory leak on realloc failure in search_directory (cppcheck). wine commit id d394df4a30feb685927908fce2887bf5496b5d66 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] ntdll: Default to Windows 10. wine commit id 69154f0329aec4fb64886a0689da198b5323dcde by Hans Leidekker <hans@codeweavers.com> * [MSI] Fix build * [WINESYNC] Update winesync file * [WINESYNC] msi/tests: Avoid test failures when running with insufficient rights. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51040 wine commit id 79ec3d9fb8551e84e9ff71dcf18861430246278a by Hans Leidekker <hans@codeweavers.com> * [WINESYNC] msi: Install and patch global assemblies in InstallFinalize. Installing global assemblies requires assembly caches to be initialized and this is no longer the case after the PE conversion (builtin fusion no longer loads if the dll is not present on disk). The next patch changes msi to perform late initialization of the assembly caches so that native fusion can be loaded once it's installed by .NET installers. However, there's no guarantee that all necessary files and registry keys are installed before the InstallFiles and PatchFiles actions are executed. Therefore this patch moves the parts of these actions handling global assemblies to InstallFinalize. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51345 wine commit id 2c450fd6215c0da4685143f97ece8b6db0f54a0b by Hans Leidekker <hans@codeweavers.com> * [WINESYNC] msi: Perform late initialization of the assembly caches. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51345 wine commit id d9d700f3328f00ec419571df0e02cef208fa1e7b by Hans Leidekker <hans@codeweavers.com> * [WINESYNC] msi: Remove msi_ prefix from static functions. wine commit id 3611398b7575177b91e8162a84ebca977c50c2f5 by Hans Leidekker <hans@codeweavers.com> * [WINESYNC] msi: Get rid of unnecessary typedefs. wine commit id 258012742512a4072265fcc47826c52319bd37ab by Hans Leidekker <hans@codeweavers.com> * [WINESYNC] msi: Handle memory allocation failure in get_link_file (cppcheck). wine commit id 687c4f5c8dc65def6fc066d5d802d7448db70d7f by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Annotate memory allocation functions with __WINE_(DEALLOC|MALLOC). wine commit id 9df04bfdb03a3017f532e70a047ee83290dbc257 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi/tests: Fix the ok() formats so they match the size of their arguments. wine commit id b6fb1b8983af7644b78bb0ba5fb9d18a1f0822f1 by Francois Gouget <fgouget@codeweavers.com> * [WINESYNC] msi/tests: Ok_() takes printf-style arguments. This lets the compiler check that the format and argument sizes match. wine commit id a80b183af74194a06af3281ee272590a7134b7f1 by Francois Gouget <fgouget@codeweavers.com> * [WINESYNC] msi: Return ERROR_OUTOFMEMORY if calloc fails in TransformView_Create (scan-build). Instead of ERROR_SUCCESS. wine commit id daa20d9d636057d7009ff3652a8577b423d23fcf by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Make TransformView_Create static. wine commit id 1da5618cbac1214082bfb897dc81804d14fc6e9e by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Fix memory leak in ready_media (scan-build). base_url was never freed, and can simply be enlarged instead of copying it to a new buffer. wine commit id c39f785b34692ee994b2449cc17a96815517e9bf by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Fix memory leak on error path in MSI_ProcessMessage (scan-build). wine commit id d06b3fd5274b056c720e2fb42eb189052d99404d by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Release record instead of free. ../dlls/msi/dialog.c:4476:11: warning: attempt to call free on non-heap object 'hdr' [-Wfree-nonheap-object] free( &rec->hdr ); ^ wine commit id 7b3690dd7399cd64123554c8a6fc7e35dcbebbe1 by Daniel Lehman <dlehman25@gmail.com> * [WINESYNC] include: Remove redundant __WINE_USE_MSVCRT checks. wine commit id 93630ce14ebf16333fda8481b5ede6f587eb32ca by Alexandre Julliard <julliard@winehq.org> * [WINESYNC] msi: Fix memory leak on error path in MSI_OpenPackageW (scan-build). wine commit id 4db2ffa60e16e06b4f6ef89fcc4c73229f4446b1 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Fix double free on error paths in TransformView_Create (scan-build). If TransformView_Create returns an error, it should not return a pointer that table_load_transform will try to free. wine commit id 0653409e0631582d89edaab0ac516994710dae1a by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Fix memory leaks in HANDLE_CustomType23 (scan-build). wine commit id 993f4d48d23477e70e92256890c77687a1c4ba08 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Reject shorter/longer lines in MsiDatabaseImportA. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54532 Signed-off-by: David Kahurani <k.kahurani@gmail.com> wine commit id e1ddc58a259d80f16bf1e62f23428775e1b070a0 by David Kahurani <k.kahurani@gmail.com> * [WINESYNC] msi: Convert newlines to alternate representation when exporting. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54532 Signed-off-by: David Kahurani <k.kahurani@gmail.com> wine commit id 60e4f8a261ae9044aafa9c4eec2a3f2aec6481b5 by David Kahurani <k.kahurani@gmail.com> * [WINESYNC] msi: Remove DECLSPEC_HIDDEN usage. wine commit id 51049c95a242f1553562a442142e813e37cee233 by Alistair Leslie-Hughes <leslie_alistair@hotmail.com> * [MSI] remove DECLSPEC_HIDDEN * [WINESYNC] msi: Fully initialize the control structure in dialog_line_control(). Fixes: 76606eaea034c51a73190aac92e75d8b20e82164 Fixes: 174b7b51ac9e57c6cfa8f48e62bbf468ae3b1f24 wine commit id 735584076efafc29673e0c9418a64343634f9aa5 by Jinoh Kang <jinoh.kang.kr@gmail.com> * [WINESYNC] msi: Make insertion order of line controls consistent with other controls. Fixes: 2c5bd49297f79d9941a256d8ec61e0eb2bf9bf9c wine commit id 3eceda2f2a77754f0bf93ea33018e8ef49e82669 by Jinoh Kang <jinoh.kang.kr@gmail.com> * [WINESYNC] msi: Don't open code dialog_add_control() in dialog_line_control(). Commit b1cc87cb656 ("msi: The line control has a height of exactly 2 device units.", 2007-12-16) open-coded the body of (msi_)dialog_add_control() inside dialog_line_control() modulo the height override. Except the fixed height, line controls have nothing special compared to other controls. Thus, there is little merit in open-coding it. Also, dialog_line_control() has bit-rotted over time; it already missed a few changes that were done to any other controls. Fix this by just using dialog_add_control(). Also, add a special case logic just for line controls. wine commit id 1fca47b724b3835ac0267f58c5b3486fc222fc71 by Jinoh Kang <jinoh.kang.kr@gmail.com> * [WINESYNC] msi: Use nameless unions/structs. wine commit id 8de0a9dc740d3ed1e3cf9460852db7e609122f3b by Alexandre Julliard <julliard@winehq.org> * [MSI] disable nameless structs * [WINESYNC] msi/tests: Use nameless unions/structs. wine commit id 490aee03e45222aa9d7e3e7fd6ff80064dc3778d by Alexandre Julliard <julliard@winehq.org> * [WINESYNC] makedep: Use #pragma makedep testdll for TESTDLL resources. wine commit id 81da9ff0f8dea4932a3afdc4c447c1c9242bb596 by Rémi Bernon <rbernon@codeweavers.com> * [WINESYNC] msi: Use CreateFileW() for handling path from cabinet_open() instead. wine commit id 085e95cd5eceb36c3e21cb7d42adab5a6af38a38 by Jactry Zeng <jzeng@codeweavers.com> * [WINESYNC] msiexec: Use CRT allocation functions. wine commit id 0f44b3bdcb3d91701a9a8ef1ad07f3e88c08a666 by Alex Henrie <alexhenrie24@gmail.com> * [WINESYNC] msi: Remove DECLSPEC_HIDDEN usage. wine commit id 91e81083458374706bbace11114f4ad5e473ac07 by Alistair Leslie-Hughes <leslie_alistair@hotmail.com> * [WINESYNC] msi: Store Context as MSIINSTALLCONTEXT in MSIPACKAGE. Avoids casting to enum pointer in msi_locate_product call. wine commit id 2daa8c9f95b35983c885f5f7efe9e1b48e91f679 by Jacek Caban <jacek@codeweavers.com> * [WINESYNC] msi/tests: Initialize pathkey in test_installprops. It could be used uninitialized on early no access return. wine commit id 93668319dd63add97036fbb79b5745c699117313 by Jacek Caban <jacek@codeweavers.com> * [WINESYNC] regsvr32: Use message boxes by default for output. regsvr32 is in GUI subsystem and shouldn't interact with console. Keeping unix I/O output in silent mode. Removing -c option as not existing in native. Signed-off-by: Eric Pouech <epouech@codeweavers.com> wine commit id ac8da35b87005e45947b8164a4132f3bbb4ec2cc by Eric Pouech <epouech@codeweavers.com> * [MSI]: Reduce diff * [WINESYNC] msiexec: No longer use console/file output APIs. Regular GUI apps don't. Signed-off-by: Eric Pouech <epouech@codeweavers.com> wine commit id e048f71ecbb103ae7c1876092cb8244b24a73cb7 by Eric Pouech <epouech@codeweavers.com> * [WINESYNC] msi: Fix a memory leak (Coverity). wine commit id 4afca1787febb012d0cdd2c007dd32beba35178d by Zhiyi Zhang <zzhang@codeweavers.com> * [WINESYNC] msi: Don't write past end of string when selecting parent directory. wine commit id bbce5d014db7f023b133d6d09e6846e027586f7d by Fabian Maurer <dark.shadow4@web.de> * [WINESYNC] msi: Avoid leaking stream on DB update. MSI_RecordGetIStream adds a reference to the stream. This reference should be negated as we are done setting the stream. Signed-off-by: David Kahurani <k.kahurani@gmail.com> wine commit id 386dbe1059ba08485696760c267ef06dbed95bad by David Kahurani <k.kahurani@gmail.com> * [WINESYNC] msi/tests: Expand costing tests. wine commit id 674efeb1f7445935cf4f49dd1285727055664ab9 by Zebediah Figura <zfigura@codeweavers.com> * [WINESYNC] msi: Round costs up to 4096 bytes instead of clamping. wine commit id 9725a2286acdb791de316295d9bcb11411a3fd56 by Zebediah Figura <zfigura@codeweavers.com> * [WINESYNC] msi: Store component cost in 512-byte units. This avoids overflow when component costs exceed 4 GB. wine commit id d7bbe884ef29215f4db2027f450fb959314f5383 by Zebediah Figura <zfigura@codeweavers.com> * [MSI] store component cost in 512-byte units * [WINESYNC] msi: Multiply by 512 in dialog_vcl_add_drives(). The main motivation here is to avoid overflow, and multiplying in one place seems simpler. wine commit id 4a227c62a59a55aff9bacf1473c7f478f5c83294 by Zebediah Figura <zfigura@codeweavers.com> * [MSI] reduce diff * [WINESYNC] msi: Create the custom action server as an elevated process. Dragon Naturally Speaking 12.5 manually validates that the custom action server is elevated. One might imagine that the right approach here is to add a manifest to msiexec; however, msiexec does not always trigger a UAC prompt on Windows. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51143 wine commit id 366398cc53c76028c8dfe8d8a16c78a6a10ce962 by Zebediah Figura <z.figura12@gmail.com> * [WINESYNC] msi/tests: Delete the temp .msi file in all failure cases. wine commit id 43fb0ecd0717ad1a6aa0702ed68368ee35d3ecda by Alexandre Julliard <julliard@winehq.org> * [WINESYNC] msi/tests: Use the helpers from utils.h in more modules. wine commit id b3f11ceb7a0ddcf5fe742377f99c947b0b56a051 by Hans Leidekker <hans@codeweavers.com> * [MSITEST] include util header * [WINESYNC] msi/tests: Try restarting tests elevated. Wine starts processes non-elevated since e92ba2de43d7afbe0704b11b29f7c30f44dfaeca which means that many tests are skipped now. wine commit id a6eb51f0e595b2e5ddc521fb61b10d72849dd0f2 by Hans Leidekker <hans@codeweavers.com> * [MSITEST] try restarting for tests elevated * [WINESYNC] msi/tests: Get rid of workarounds for old Windows versions. wine commit id 738ec8285583248a84349939734ed600a47ba73d by Hans Leidekker <hans@codeweavers.com> * [MSI] fix patch failed * [WINESYNC] msi: Install global assemblies before running deferred custom actions. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56493 wine commit id 7f0ca9c284d15d03f14a8fefefac834990d622cd by Hans Leidekker <hans@codeweavers.com> * [WINESYNC] msi: Install global assemblies after install custom actions and before commit custom actions. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56609 wine commit id 27f5470ff4c20121b9eacd702c888400191c7d9e by Hans Leidekker <hans@codeweavers.com> * [WINESYNC]: msi is now in sync with wine-staging wine-9.8 * [MSI] Fix build * [WINESYNC] Update WINESYNC doc * [MSI] Remove nonameless* defines * [MSIEXEC] Fix build * [MSIEXEC] Fix build * [MSI] Fix vcl_get_cost
378 lines
20 KiB
Plaintext
378 lines
20 KiB
Plaintext
# ReactOS WINE porting/syncing reference file
|
|
# Update this file when you port/sync a dll/program from WINE.
|
|
|
|
The ReactOS Project shares quite a bit of code with the WINE project.
|
|
This document should provide a complete reference for all of the
|
|
locations in the ReactOS source tree where code is shared between the
|
|
two projects. If you find something is missing from this documentation
|
|
please add it.
|
|
|
|
If you find that a function in ReactOS that is not implemented properly
|
|
and is based on WINE sources, check the latest Winehq CVS and see if
|
|
it has been fixed there. If so, please submit a patch to
|
|
ros-dev@reactos.org. Otherwise please send a patch to both
|
|
wine-patches@winehq.com and ros-dev@reactos.org
|
|
|
|
The following build tools are shared with Wine.
|
|
|
|
sdk/tools/unicode # Synced to WineStaging-4.18
|
|
sdk/tools/widl # Synced to WineStaging-4.0
|
|
sdk/tools/wpp # Synced to WineStaging-2.9
|
|
|
|
The following libraries are shared with Wine.
|
|
|
|
dll/directx/wine/amstream # Synced to WineStaging-3.9
|
|
dll/directx/wine/d3d8 # Synced to WineStaging-3.3
|
|
dll/directx/wine/d3d9 # Synced to WineStaging-3.3
|
|
dll/directx/wine/d3dcompiler_43 # Synced to WineStaging-4.18
|
|
dll/directx/wine/d3drm # Synced to WineStaging-4.18
|
|
dll/directx/wine/d3dx9_24 => 43 # Synced to WineStaging-6.0-rc5
|
|
dll/directx/wine/d3dxof # Synced to WineStaging-4.18
|
|
dll/directx/wine/ddraw # Synced to WineStaging-3.3
|
|
dll/directx/wine/devenum # Synced to WineStaging-4.18
|
|
dll/directx/wine/dinput # Synced to WineStaging-4.18
|
|
dll/directx/wine/dinput8 # Synced to WineStaging-4.18
|
|
dll/directx/wine/dmusic # Synced to WineStaging-4.18
|
|
dll/directx/wine/dplay # Synced to WineStaging-3.3
|
|
dll/directx/wine/dplayx # Synced to WineStaging-4.18
|
|
dll/directx/wine/dpnhpast # Synced to WineStaging-4.18
|
|
dll/directx/wine/dsound # Forked at Wine-1.3.29. Newer versions are depending on NT6+ mmdevapi, so the further syncing makes no sense until we're retargeted to Vista or newer.
|
|
dll/directx/wine/dxdiagn # Synced to WineStaging-4.18
|
|
dll/directx/wine/msdmo # Synced to WineStaging-4.18
|
|
dll/directx/wine/qcap # Synced to WineStaging-3.3
|
|
dll/directx/wine/qedit # Synced to WineStaging-3.17
|
|
dll/directx/wine/quartz # Synced to WineStaging-3.9
|
|
dll/directx/wine/wined3d # Synced to WineStaging-3.3
|
|
|
|
dll/win32/activeds # Synced to WineStaging-4.18
|
|
dll/win32/actxprxy # Synced to WineStaging-3.3
|
|
dll/win32/advpack # Synced to WineStaging-4.18
|
|
dll/win32/atl # Synced to WineStaging-4.18
|
|
dll/win32/atl80 # Synced to WineStaging-4.18
|
|
dll/win32/atl100 # Synced to WineStaging-3.3
|
|
dll/win32/avifil32 # Synced to WineStaging-4.18
|
|
dll/win32/avrt # Synced to Wine-9.7
|
|
dll/win32/bcrypt # Synced to WineStaging-1.9.23 (+ winetest synced to 8d8936cbb6fea3cac862e059e814527f5361f48b, a.k.a 20161206-BJ)
|
|
dll/win32/browseui # Out of sync
|
|
dll/win32/cabinet # Synced to WineStaging-4.18
|
|
dll/win32/clusapi # Synced to WineStaging-3.3
|
|
dll/win32/comcat # Synced to WineStaging-3.3
|
|
dll/win32/comdlg32 # Synced to WineStaging-4.18
|
|
dll/win32/compstui # Synced to WineStaging-4.18
|
|
dll/win32/credui # Synced to WineStaging-4.18
|
|
dll/win32/crypt32 # Synced to WineStaging-4.0
|
|
dll/win32/cryptdlg # Synced to WineStaging-4.18
|
|
dll/win32/cryptdll # Synced to WineStaging-4.18
|
|
dll/win32/cryptnet # Synced to WineStaging-4.18
|
|
dll/win32/cryptui # Synced to WineStaging-4.18
|
|
dll/win32/dbgeng # Synced to WineStaging-4.18
|
|
dll/win32/dbghelp # Synced to WineStaging-5.16
|
|
dll/win32/dciman32 # Synced to WineStaging-3.3
|
|
dll/win32/dwmapi # Synced to Wine-8.14
|
|
dll/win32/faultrep # Synced to WineStaging-4.18
|
|
dll/win32/fontsub # Synced to WineStaging-2.9
|
|
dll/win32/fusion # Synced to WineStaging-4.18
|
|
dll/win32/gdiplus # Synced to WineStaging-4.0
|
|
dll/win32/hhctrl.ocx # Synced to WineStaging-4.18
|
|
dll/win32/hlink # Synced to WineStaging-4.18
|
|
dll/win32/hnetcfg # Synced to WineStaging-4.18
|
|
dll/win32/iccvid # Synced to WineStaging-4.0
|
|
dll/win32/ieframe # Synced to WineStaging-4.18
|
|
dll/win32/imaadp32.acm # Synced to WineStaging-4.0
|
|
dll/win32/imagehlp # Synced to WineStaging-4.18
|
|
dll/win32/imm32 # Forked at WineStaging-4.18
|
|
dll/win32/inetcomm # Synced to WineStaging-4.18
|
|
dll/win32/inetmib1 # Synced to WineStaging-4.18
|
|
dll/win32/initpki # Synced to WineStaging-4.18
|
|
dll/win32/inseng # Synced to WineStaging-4.18
|
|
dll/win32/iphlpapi # Out of sync
|
|
dll/win32/itircl # Synced to WineStaging-4.18
|
|
dll/win32/itss # Synced to WineStaging-4.18
|
|
dll/win32/jscript # Synced to WineStaging-4.18
|
|
dll/win32/jsproxy # Synced to WineStaging-4.18
|
|
dll/win32/loadperf # Synced to WineStaging-4.18
|
|
dll/win32/lz32 # Synced to WineStaging-3.3
|
|
dll/win32/mapi32 # Synced to WineStaging-4.18
|
|
dll/win32/mciavi32 # Synced to WineStaging-4.18
|
|
dll/win32/mcicda # Synced to WineStaging-3.3
|
|
dll/win32/mciqtz32 # Synced to WineStaging-4.18
|
|
dll/win32/mciseq # Synced to WineStaging-4.18
|
|
dll/win32/mciwave # Synced to WineStaging-4.18
|
|
dll/win32/mgmtapi # Synced to WineStaging-3.3
|
|
dll/win32/mlang # Synced to WineStaging-4.18
|
|
dll/win32/mmdevapi # Synced to WineStaging-4.18
|
|
dll/win32/mpr # Synced to WineStaging-4.18
|
|
dll/win32/mprapi # Synced to WineStaging-3.3
|
|
dll/win32/msacm32 # Synced to WineStaging-4.18
|
|
dll/win32/msacm32.drv # Synced to WineStaging-3.3
|
|
dll/win32/msadp32.acm # Synced to WineStaging-4.0
|
|
dll/win32/mscat32 # Synced to WineStaging-4.18
|
|
dll/win32/mscms # Synced to WineStaging-4.18
|
|
dll/win32/mscoree # Synced to Wine-1.5.4
|
|
dll/win32/msctf # Synced to WineStaging-4.18
|
|
dll/win32/msftedit # Synced to WineStaging-4.18
|
|
dll/win32/msg711.acm # Synced to WineStaging-4.18
|
|
dll/win32/msgsm32.acm # Synced to WineStaging-4.0
|
|
dll/win32/mshtml # Synced to WineStaging-1.7.55
|
|
dll/win32/mshtml.tlb # Synced to WineStaging-1.7.55
|
|
dll/win32/msi # Synced to Wine-9.8
|
|
dll/win32/msimg32 # Synced to WineStaging-3.3
|
|
dll/win32/msimtf # Synced to WineStaging-4.18
|
|
dll/win32/msisip # Synced to WineStaging-4.18
|
|
dll/win32/msisys.ocx # Synced to WineStaging-4.18
|
|
dll/win32/msnet32 # Synced to WineStaging-4.18
|
|
dll/win32/mspatcha # Forked at WineStaging-3.3
|
|
dll/win32/msrle32 # Synced to WineStaging-4.18
|
|
dll/win32/mssign32 # Synced to WineStaging-4.18
|
|
dll/win32/mssip32 # Synced to WineStaging-4.18
|
|
dll/win32/mstask # Synced to WineStaging-3.3
|
|
dll/win32/msvcrt20 # Out of sync
|
|
dll/win32/msvcrt40 # Out of sync
|
|
dll/win32/msvfw32 # Synced to WineStaging-4.18
|
|
dll/win32/msvidc32 # Synced to WineStaging-4.0
|
|
dll/win32/msxml # Synced to WineStaging-3.3
|
|
dll/win32/msxml2 # Synced to WineStaging-3.3
|
|
dll/win32/msxml3/domdoc # Synced to WineStaging-4.18
|
|
dll/win32/msxml3/httpreq # Synced to WineStaging-4.18
|
|
dll/win32/msxml3/saxreader # Synced to WineStaging-4.18
|
|
dll/win32/msxml3/schema # Synced to Wine-6.14
|
|
dll/win32/msxml3/xmldoc # Synced to WineStaging-4.18
|
|
dll/win32/msxml3/xmlparser # Synced to WineStaging-4.18
|
|
dll/win32/msxml3/xmlview # Synced to WineStaging-4.18
|
|
dll/win32/msxml4 # Synced to WineStaging-3.3
|
|
dll/win32/msxml6 # Synced to WineStaging-3.3
|
|
dll/win32/nddeapi # Synced to WineStaging-3.3
|
|
dll/win32/netapi32 # Forked at Wine-1.3.34
|
|
dll/win32/npptools # Synced to WineStaging-4.18
|
|
dll/win32/ntdsapi # Synced to WineStaging-4.18
|
|
dll/win32/objsel # Synced to WineStaging-4.18
|
|
dll/win32/odbc32 # Synced to WineStaging-4.18. Depends on port of Linux ODBC.
|
|
dll/win32/odbccp32 # Synced to WineStaging-4.18
|
|
dll/win32/ole32 # Synced to WineStaging-4.18
|
|
dll/win32/oleacc # Synced to WineStaging-4.18
|
|
dll/win32/oleaut32 # Synced to WineStaging-4.18
|
|
dll/win32/olecli32 # Synced to WineStaging-4.18
|
|
dll/win32/oledlg # Synced to WineStaging-4.18
|
|
dll/win32/olepro32 # Synced to WineStaging-3.3
|
|
dll/win32/olesvr32 # Synced to WineStaging-4.18
|
|
dll/win32/olethk32 # Synced to WineStaging-3.3
|
|
dll/win32/pdh # Synced to WineStaging-4.18
|
|
dll/win32/pidgen # Synced to WineStaging-4.18
|
|
dll/win32/powrprof # Forked at Wine-1.0rc5
|
|
dll/win32/printui # Synced to WineStaging-4.18
|
|
dll/win32/propsys # Synced to WineStaging-4.18
|
|
dll/win32/pstorec # Synced to WineStaging-3.3
|
|
dll/win32/qmgr # Synced to WineStaging-4.18
|
|
dll/win32/qmgrprxy # Synced to WineStaging-2.9
|
|
dll/win32/query # Synced to WineStaging-4.18
|
|
dll/win32/rasapi32 # Synced to WineStaging-3.3
|
|
dll/win32/regapi # Synced to WineStaging-5.7
|
|
dll/win32/resutils # Synced to WineStaging-3.3
|
|
dll/win32/riched20 # Synced to WineStaging-4.18
|
|
dll/win32/riched32 # Synced to WineStaging-3.3
|
|
dll/win32/rpcrt4 # Synced to WineStaging-4.18
|
|
dll/win32/rsabase # Synced to WineStaging-3.3
|
|
dll/win32/rsaenh # Synced to WineStaging-2.9
|
|
dll/win32/sccbase # Synced to WineStaging-4.18
|
|
dll/win32/schannel # Synced to WineStaging-3.3
|
|
dll/win32/scrrun # Synced to WineStaging-4.18
|
|
dll/win32/secur32 # Forked
|
|
dll/win32/security # Forked (different .spec)
|
|
dll/win32/sensapi # Synced to WineStaging-4.18
|
|
dll/win32/setupapi # Forked at Wine-20050524
|
|
dll/win32/shdoclc # Synced to WineStaging-3.3
|
|
dll/win32/shdocvw # Synced to WineStaging-4.18
|
|
dll/win32/shell32 # Forked at Wine-20071011
|
|
dll/win32/shfolder # Synced to WineStaging-3.3
|
|
dll/win32/shlwapi # Synced to WineStaging-3.3
|
|
dll/win32/slbcsp # Synced to WineStaging-4.18
|
|
dll/win32/snmpapi # Synced to WineStaging-4.18
|
|
dll/win32/softpub # Synced to WineStaging-2.9
|
|
dll/win32/stdole2.tlb # Synced to WineStaging-3.3
|
|
dll/win32/stdole32.tlb # Synced to WineStaging-3.3
|
|
dll/win32/sti # Synced to WineStaging-4.18
|
|
dll/win32/sxs # Synced to WineStaging-4.18
|
|
dll/win32/t2embed # Synced to WineStaging-4.18
|
|
dll/win32/tapi32 # Synced to WineStaging-4.18
|
|
dll/win32/traffic # Synced to WineStaging-3.3
|
|
dll/win32/twain_32 # Synced to WineStaging-4.18
|
|
dll/win32/updspapi # Synced to WineStaging-4.18
|
|
dll/win32/url # Synced to WineStaging-3.3
|
|
dll/win32/urlmon # Synced to WineStaging-4.18
|
|
dll/win32/usp10 # Synced to WineStaging-4.18
|
|
dll/win32/uxtheme # Forked
|
|
dll/win32/vbscript # Synced to WineStaging-4.18
|
|
dll/win32/version # Synced to WineStaging-4.18
|
|
dll/win32/vssapi # Synced to WineStaging-4.18
|
|
dll/win32/wbemdisp # Synced to WineStaging-4.18
|
|
dll/win32/wbemprox # Synced to WineStaging-4.18
|
|
dll/win32/windowscodecs # Synced to WineStaging-4.18
|
|
dll/win32/windowscodecsext # Synced to WineStaging-2.9
|
|
dll/win32/winemp3.acm # Synced to WineStaging-4.18
|
|
dll/win32/wing32 # Synced to WineStaging-3.3
|
|
dll/win32/winhttp # Synced to WineStaging-4.18
|
|
dll/win32/wininet # Synced to WineStaging-6.0rc1
|
|
dll/win32/winmm # Forked at Wine-20050628
|
|
dll/win32/winmm/midimap # Forked at Wine-20050628
|
|
dll/win32/winmm/wavemap # Forked at Wine-20050628
|
|
dll/win32/winscard # Synced to WineStaging-4.18
|
|
dll/win32/wintrust # Synced to WineStaging-4.18
|
|
dll/win32/wldap32 # Synced to WineStaging-4.18
|
|
dll/win32/wmi # Synced to WineStaging-2.9
|
|
dll/win32/wmiutils # Synced to WineStaging-4.18
|
|
dll/win32/wmvcore # Synced to WineStaging-4.18
|
|
dll/win32/wshom.ocx # Synced to WineStaging-4.18
|
|
dll/win32/wtsapi32 # Synced to WineStaging-4.18
|
|
dll/win32/wuapi # Synced to WineStaging-4.18
|
|
dll/win32/xinput1_1 # Synced to WineStaging-2.9
|
|
dll/win32/xinput1_2 # Synced to WineStaging-2.9
|
|
dll/win32/xinput1_3 # Synced to WineStaging-2.9
|
|
dll/win32/xinput9_1_0 # Synced to WineStaging-2.9
|
|
dll/win32/xmllite # Synced to WineStaging-4.18
|
|
dll/win32/xolehlp # Synced to WineStaging-3.21
|
|
|
|
comctl32 -
|
|
dll/win32/comctl32/button.c # Forked at Wine-3.3
|
|
dll/win32/comctl32/datetime.c # Synced to Wine-6.0
|
|
dll/win32/comctl32/* # Synced to Wine-5.0
|
|
|
|
dll/cpl/inetcpl # Synced to WineStaging-4.18
|
|
|
|
win32ss/printing/monitors/localmon/ui/ # Synced to WineStaging-4.18 (known there as /dll/win32/localui)
|
|
|
|
ReactOS shares the following programs with Winehq.
|
|
|
|
base/applications/cmdutils/cscript # Synced to WineStaging-4.18
|
|
base/applications/cmdutils/reg # Synced to WineStaging-6.23
|
|
base/applications/cmdutils/schtasks # Synced to WineStaging-3.3
|
|
base/applications/cmdutils/taskkill # Synced to WineStaging-3.17
|
|
base/applications/cmdutils/wmic # Synced to WineStaging-4.0
|
|
base/applications/cmdutils/wscript # Synced to WineStaging-4.18
|
|
base/applications/cmdutils/xcopy # Synced to WineStaging-3.17
|
|
base/applications/games/winmine # Synced to WineStaging-2.16 with our own resources.
|
|
base/applications/extrac32 # Synced to WineStaging-4.0
|
|
base/applications/iexplore # Synced to WineStaging-3.3
|
|
base/applications/notepad # Forked at Wine-20041201
|
|
base/applications/winhlp32 # Synced to WineStaging-4.0
|
|
base/applications/wordpad # Synced to WineStaging-1.9.16
|
|
base/applications/write # Synced to WineStaging-3.3
|
|
base/services/rpcss # Synced to WineStaging-3.3
|
|
base/system/expand # Synced to WineStaging-3.3
|
|
base/system/msiexec # Synced to Wine-9.8
|
|
modules/rosapps/applications/winfile # Autosync
|
|
|
|
In addition the following libs, dlls and source files are mostly based on code ported
|
|
from Winehq CVS. If you are looking to update something in these files
|
|
check Wine current sources first as it may already be fixed.
|
|
|
|
sdk/lib/3rdparty/strmbase # Synced to WineStaging-3.3
|
|
|
|
sdk/lib/rtl/actctx.c # Synced to wine-5.18
|
|
sdk/lib/rtl/timerqueue.c # Synced to wine-5.18
|
|
sdk/lib/rtl/wait.c # Synced to wine-5.18
|
|
|
|
advapi32 -
|
|
dll/win32/advapi32/wine/cred.c # Synced to WineStaging-3.3
|
|
dll/win32/advapi32/wine/crypt.c # Synced to WineStaging-3.3
|
|
dll/win32/advapi32/wine/crypt_des.c # Synced to WineStaging-3.3
|
|
dll/win32/advapi32/wine/crypt_lmhash.c # Synced to WineStaging-3.3
|
|
dll/win32/advapi32/wine/security.c # Out of Sync
|
|
|
|
gdi32 -
|
|
dll/win32/gdi32/objects/linedda.c # Synced at 20090410
|
|
|
|
iphlpapi -
|
|
modules/rostests/winetests/iphlpapi # Synced to WineStaging-1.9.11
|
|
|
|
kernel32 -
|
|
dll/win32/kernel32/wine/actctx.c # Synced to wine-3.3
|
|
dll/win32/kernel32/wine/comm.c # Synced to wine-3.3
|
|
dll/win32/kernel32/wine/lzexpand.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/wine/profile.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/wine/res.c # Partially synced to WineStaging-3.3
|
|
dll/win32/kernel32/winnls/string/casemap.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/winnls/string/collation.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/winnls/string/digitmap.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/winnls/string/fold.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/winnls/string/format_msg.c # Synced to WineStaging-3.3
|
|
dll/win32/kernel32/winnls/string/locale.c # Synced in wine-3.3
|
|
dll/win32/kernel32/winnls/string/lcformat.c # Synced to WineStaging-3.21
|
|
dll/win32/kernel32/winnls/string/sortkey.c # Synced to WineStaging-3.3
|
|
|
|
lpk -
|
|
dll/win32/lpk/bidi.c # Synced to Wine-4.9 (gdi32/bidi.c)
|
|
dll/win32/lpk/direction.c # Synced to Wine-4.9 (gdi32/direction.c)
|
|
|
|
msvcrt -
|
|
sdk/lib/crt/conio/cputs.c # Synced to WineStaging-1.9.16
|
|
sdk/lib/crt/except/cpp.c # Synced at 20080528
|
|
sdk/lib/crt/except/cppexcept.c # Synced at 20071111
|
|
sdk/lib/crt/process/_cwait.c # Synced to WineStaging-1.7.37
|
|
sdk/lib/crt/signal/xcptinfo.c # Synced to WineStaging-1.7.37
|
|
sdk/lib/crt/string/scanf.c/h # Synced to Wine-1.7.17
|
|
sdk/lib/crt/string/strtoi64.c # Synced to WineStaging-1.9.9
|
|
sdk/lib/crt/string/strtok.c # Synced to WineStaging-1.9.16
|
|
sdk/lib/crt/string/strtok_s.c # Synced to WineStaging-1.9.16
|
|
sdk/lib/crt/string/strtoul.c # Synced to WineStaging-1.9.9
|
|
sdk/lib/crt/string/strxfrm.c # Synced to Wine-1.9.16
|
|
sdk/lib/crt/string/wcs.c # Synced at 20080611
|
|
sdk/lib/crt/string/wctype.c # Synced to WineStaging-1.9.16
|
|
sdk/lib/crt/string/wtoi64.c # Synced to Wine-1.9.16
|
|
sdk/lib/crt/mbstring/ischira.c # Synced to Wine-1.9.16
|
|
sdk/lib/crt/wine/heap.c # Synced at 20080529
|
|
sdk/lib/crt/wine/undname.c # Synced to WineStaging-1.9.16
|
|
sdk/lib/crt/process/thread.c # Synced to WineStaging-1.7.55
|
|
|
|
regedit
|
|
base/applications/regedit/regedit.c # Synced to Wine-7.17
|
|
base/applications/regedit/regproc.c # Synced to Wine-7.17
|
|
|
|
user32 -
|
|
win32ss/user/user32/controls/button.c # Synced to WineStaging-1.7.37
|
|
win32ss/user/user32/controls/combo.c # Synced to WineStaging-1.7.37
|
|
win32ss/user/user32/controls/edit.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/controls/icontitle.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/controls/listbox.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/controls/scrollbar.c # Forked
|
|
win32ss/user/user32/controls/static.c # Synced to WineStaging-1.7.55
|
|
|
|
win32ss/user/user32/include/dde_private.h # Synced to WineStaging-1.7.55
|
|
|
|
win32ss/user/user32/misc/dde.c # Synced to WineStaging-1.7.55 (dde_misc.c)
|
|
win32ss/user/user32/misc/ddeclient.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/misc/ddeserver.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/misc/exticon.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/misc/resources.c # Partially synced to WineStaging-1.7.55
|
|
win32ss/user/user32/misc/winhelp.c # Last sync date unknown
|
|
|
|
win32ss/user/user32/windows/cursoricon # Forked from Wine-1.2-rc7
|
|
win32ss/user/user32/windows/defwnd.c # Forked
|
|
win32ss/user/user32/windows/draw.c # Forked at Wine-20020904 (uitools.c)
|
|
win32ss/user/user32/windows/mdi.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/windows/menu.c # Forked
|
|
win32ss/user/user32/windows/messagebox.c # Forked
|
|
win32ss/user/user32/windows/rect.c # Forked (uitools.c)
|
|
win32ss/user/user32/windows/spy.c # Synced to WineStaging-1.7.55
|
|
win32ss/user/user32/windows/text.c # Forked (lstr.c)
|
|
win32ss/user/user32/windows/winpos.c # Forked
|
|
|
|
schannel.c
|
|
dll/win32/schannel/schannel_wine.c # synced to wine-1.7.17 (secur32/schannel.c)
|
|
dll/win32/schannel/secur32_wine.c # partial sync to wine-1.7.17 (secur32/secur32.c)
|
|
|
|
secur32 -
|
|
dll/win32/secur32/sspi.c # Partially synced to WineStaging-1.7.55 (secur32.c)
|
|
dll/win32/secur32/thunks.c # Synced to WineStaging-1.9.4
|
|
dll/win32/secur32/wrapper.c # Synced to WineStaging-1.9.4
|
|
|
|
setupapi -
|
|
dll/win32/setupapi/dialog.c # Synced to WineStaging-1.9.15
|
|
dll/win32/setupapi/query.c # Partially synced to Wine-4.8
|
|
dll/win32/setupapi/setupcab.c # Synced to WineStaging-1.9.4
|
|
|
|
win32k -
|
|
win32ss/gdi/ntgdi/bezier.c # Synced to WineStaging-1.9.4 (gdi32/painting.c)
|
|
|
|
winmm -
|
|
modules/rostests/winetests/winmm # Synced to WineStaging-4.18
|