Commit graph

65036 commits

Author SHA1 Message Date
Amine Khaldi c5485a4bf0 [AVIFIL32] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70842
2016-03-01 18:31:48 +00:00
Amine Khaldi d9ba4bf170 [QUARTZ_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70841
2016-03-01 18:26:00 +00:00
Amine Khaldi 4e179c15ac [QUARTZ] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70840
2016-03-01 18:25:44 +00:00
Amine Khaldi d4d184c689 [INCLUDE/WINE] Update winternl.h. CORE-10912
svn path=/trunk/; revision=70839
2016-03-01 18:21:47 +00:00
Amine Khaldi 1bd33c5367 [DXSDK] Add missing ksuuids.h inclusion.
svn path=/trunk/; revision=70838
2016-03-01 18:15:48 +00:00
Hermès Bélusca-Maïto e3445e18d1 [USETUP]
- bootsup.c/.h, usetup.c: Save the old MBR sector in the system partition (this makes easier to restore the old one).
- fslist.c/.h, usetup.h: Fix header inclusion order.
- partlist.c/.h, usetup.c: On BIOS-PC architectures, the system partition can be formatted in any FS as long as it is the active partition (on the contrary, on architectures where such system partition is required, it is formatted in FAT). We currently do not have write support for all FSes out there (apart for FAT until now), so do a "clever" "trick" to work around this problem: on initialized disks, find the active partition and check its FS. If we support write access to this FS then we're OK, otherwise we change the (active) system partition for the one on which we are going to install ReactOS (which is, by construction, formatted with a FS on which we support write access).
The MBR (resp. the VBR) of the disk (resp. of the system partition) are always saved into files, making easy for people to boot on them (using FreeLdr) or restoring them.

CORE-10898

svn path=/trunk/; revision=70837
2016-03-01 15:00:56 +00:00
Amine Khaldi a91cef7070 [STRMBASE] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70836
2016-03-01 13:41:22 +00:00
Amine Khaldi 284bfcc823 [PSDK] Update d3dcommon.idl. CORE-10912
svn path=/trunk/; revision=70835
2016-03-01 13:38:40 +00:00
Amine Khaldi 24426079d7 [DXDIAGN_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70834
2016-03-01 13:18:35 +00:00
Amine Khaldi 1c657e3e04 [DXDIAGN] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70833
2016-03-01 13:17:52 +00:00
Amine Khaldi 2e477a8332 [DPLAYX] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70832
2016-03-01 12:30:17 +00:00
Amine Khaldi 26f0614d70 [BCRYPT_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70831
2016-03-01 12:28:40 +00:00
Amine Khaldi 4efedc0606 [BCRYPT] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70830
2016-03-01 12:27:13 +00:00
Amine Khaldi 580e868308 [PSDK] Update bcrypt.h. CORE-10912
svn path=/trunk/; revision=70829
2016-03-01 12:24:32 +00:00
Amine Khaldi dce802c523 [ATL100_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70828
2016-03-01 12:16:06 +00:00
Amine Khaldi 6310ce0e66 [ATL] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70827
2016-03-01 12:14:12 +00:00
Amine Khaldi 49bcd564e8 [CABINET] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70826
2016-03-01 12:12:48 +00:00
Aleksandar Andrejevic c6e5bf1f49 [NTVDM]
Some programs expect an 8x8 font at F000:FA6E.
CORE-10877 #comment Works rather well as of r70825.


svn path=/trunk/; revision=70825
2016-03-01 00:44:20 +00:00
Pierre Schweitzer 5e3fd4edeb [NTOSKRNL]
The Ewoks concil said it's fine to dereference null pointers in the kernel, so, partly revert r70819 (by partly, I mean: revert everything excepted the comments that were fixed!).
Also add asserts that exist on Windows to make it obvious we're about to kill the whole kernel

To make it clear: fix the FSD!

svn path=/trunk/; revision=70824
2016-02-29 21:45:44 +00:00
Amine Khaldi a1a070ac19 [DXSDK] Update d3dx9anim.h. CORE-10912
svn path=/trunk/; revision=70823
2016-02-29 21:09:38 +00:00
Amine Khaldi 6fb762b426 [DXSDK] Update d3dx9tex.h. CORE-10912
svn path=/trunk/; revision=70822
2016-02-29 21:07:02 +00:00
Amine Khaldi 0918f6d8ea [D3DX9_24][D3DX9_36] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70821
2016-02-29 21:01:26 +00:00
Hermès Bélusca-Maïto 679011f92d [USETUP]
- Formatting fixes only.
[DISKPART]
- Fix a confusion CylinderAlignment vs. SectorAlignment.
- Formatting fixes.

svn path=/trunk/; revision=70820
2016-02-29 20:58:32 +00:00
Pierre Schweitzer 2f26a4a9e9 [NTOSKRNL]
Don't attempt to null-dereference fastio routine without checking whether it was set first.

This fixes RW with FSDs using cache but no FastIO possibilities.

CORE-10892

svn path=/trunk/; revision=70819
2016-02-29 13:59:32 +00:00
Thomas Faber 5786d08d01 [VERSION]
- Trunk is 0.5-SVN now.

svn path=/trunk/; revision=70818
2016-02-29 13:12:57 +00:00
Thomas Faber 42a427d782 [ROSAUTOTEST]
- Update Testman web service URI for the new website since a redirect from the old address will not work for POST. Should fix WHS Testbot.
ROSTESTS-215 #resolve

svn path=/trunk/; revision=70817
2016-02-29 11:57:19 +00:00
Aleksandar Andrejevic c799784abf [NTVDM]
VidBiosScrollWindow shouldn't corrupt the screen in non-alphanumeric modes.
CORE-10877


svn path=/trunk/; revision=70816
2016-02-29 04:14:55 +00:00
Hermès Bélusca-Maïto 960b573f7b [REACTOS]: s/partiton/partition/
svn path=/trunk/; revision=70815
2016-02-29 01:22:02 +00:00
James Tabor 3e20700354 - Fix build.
svn path=/trunk/; revision=70814
2016-02-29 00:32:08 +00:00
James Tabor 96ab54cc90 [Win32SS]
- Based on patch : Jacek Caban : Don't use window' s parent as an owner if WS_CHILD style is not set.
- https://www.winehq.org/pipermail/wine-cvs/2016-February/111835.html
- Pass all win:test_parent_owner.
- Add window last view to Desktop Information structure.

svn path=/trunk/; revision=70813
2016-02-29 00:29:52 +00:00
Amine Khaldi 6a531b1d1a [DINPUT] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70812
2016-02-29 00:08:18 +00:00
Amine Khaldi 033a7c5720 [D3DRM_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70811
2016-02-29 00:05:39 +00:00
Amine Khaldi 44d7b7156e [D3DRM] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70810
2016-02-29 00:01:53 +00:00
Amine Khaldi 3268729a9f [PSDK] Update ndrtypes.h. CORE-10912
svn path=/trunk/; revision=70809
2016-02-28 23:59:17 +00:00
Amine Khaldi 2172618e95 [D3D8][D3D9][DDRAW][WINED3D] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70808
2016-02-28 23:33:47 +00:00
Amine Khaldi 351cc7ab9c [WINHLP32] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70807
2016-02-28 23:05:53 +00:00
Amine Khaldi 8978288c0b [REG_WINETEST] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70806
2016-02-28 23:04:29 +00:00
Amine Khaldi 5352d102a7 [INCLUDE/WINE] Update test.h. CORE-10912
svn path=/trunk/; revision=70805
2016-02-28 22:55:32 +00:00
Amine Khaldi edd653485e [REG] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70804
2016-02-28 22:53:26 +00:00
Amine Khaldi 8d45bf82db [UNICODE] Sync with Wine Staging 1.9.4. CORE-10912
svn path=/trunk/; revision=70803
2016-02-28 22:40:54 +00:00
Sylvain Petreolle dd21fa115a [ROSTESTS]
Handle generated tests on all architectures.
Update i386 files.

The kernel32 generated remains disabled,
Wine's definition of COMMCONFIG differs from our/MSDN definition.
Commented out nonexisting LPEXCEPTION_RECORD.

svn path=/trunk/; revision=70802
2016-02-28 20:56:00 +00:00
Eric Kohl fbaaa03502 [DESK]
Brazilian Portuguese translation for desk.cpl.
Patch by Edison Henrique Andreassy.
CORE-10905 #resolve #comment Thanks a lot!

svn path=/trunk/; revision=70801
2016-02-28 20:48:31 +00:00
Eric Kohl 9173d75317 Brazilian Portuguese translation for hdwwiz.cpl.
Patch by Edison Henrique Andreassy.
CORE-10901 #resolve #comment Thanks a lot!

svn path=/trunk/; revision=70800
2016-02-28 20:44:26 +00:00
Eric Kohl 8035df5526 [INPUT]
Prevent removal of all languages from the language list by disabling the 'Remove' button when only one item remains. Enable the 'Remove' button when there is more than one item in the list.
CORE-3587 #resolve

svn path=/trunk/; revision=70799
2016-02-28 17:01:35 +00:00
Hermès Bélusca-Maïto 619dcec227 [USETUP]: Isolate the recognition of the filesystem of a partition into its own function.
svn path=/trunk/; revision=70798
2016-02-28 16:01:54 +00:00
Hermès Bélusca-Maïto dd0671dab2 [USETUP]
- Remove some unused structure members.
- Consistently use the vocable "system partition" and "boot partition" (using MS aka. hardware-oriented definition) according to:
  https://en.wikipedia.org/wiki/System_partition_and_boot_partition
  http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/boot-and-system-volumes.html
  in few words:
  "system partition": the one that will be started by the platform firmware, and where the bootloader is found (only one per computer);
  "boot partition": the one where the OS of your choice resides (any number).

svn path=/trunk/; revision=70797
2016-02-28 15:25:22 +00:00
Pierre Schweitzer cb7c75c1d1 [FS_REC]
--MagicValues;

svn path=/trunk/; revision=70796
2016-02-28 11:27:05 +00:00
Hermès Bélusca-Maïto 429d288e03 [USETUP]: Fix some translations (especially the french one).
svn path=/trunk/; revision=70795
2016-02-28 02:51:47 +00:00
Pierre Schweitzer 5b8d869263 [SHELL32]
Thanks to r70793, this hack is no longer needed.

CORE-10878
CORE-10032

svn path=/trunk/; revision=70794
2016-02-27 21:01:11 +00:00
Pierre Schweitzer 13dfbf2592 [MPR]
Fix enumeration of network places root directory when starting the enumeration from network providers enumeration

CORE-10878 #resolve #comment Fixed with r70793

svn path=/trunk/; revision=70793
2016-02-27 20:58:32 +00:00