Pierre Schweitzer [Thu, 14 Jul 2016 12:46:31 +0000 (12:46 +0000)]
[BOOTMGR]
Don't use uninit var.
CID #
1363650
svn path=/trunk/; revision=71939
Pierre Schweitzer [Thu, 14 Jul 2016 12:40:17 +0000 (12:40 +0000)]
[BOOTLIB]
Don't deal with uninit ptr.
CID #
1363698
svn path=/trunk/; revision=71938
Pierre Schweitzer [Thu, 14 Jul 2016 12:21:57 +0000 (12:21 +0000)]
[NTOSKRNL]
Assert that the allocated buffers are not leaked.
CID #
1248416
svn path=/trunk/; revision=71937
Pierre Schweitzer [Thu, 14 Jul 2016 12:07:05 +0000 (12:07 +0000)]
[MUP]
Don't deal with uninit ptr.
CID #
1322222
svn path=/trunk/; revision=71936
Mark Jansen [Wed, 13 Jul 2016 18:44:51 +0000 (18:44 +0000)]
[ACPPAGE] Remove unused var. CID
1363705
svn path=/trunk/; revision=71934
Mark Jansen [Wed, 13 Jul 2016 18:33:42 +0000 (18:33 +0000)]
[RAPPS_NEW] Use the actual buffer size instead of hardcoding a random number. CID
1363551
svn path=/trunk/; revision=71933
Mark Jansen [Wed, 13 Jul 2016 18:10:37 +0000 (18:10 +0000)]
[ACLAYER] Use the return of StringCbPrintfW instead of ignoring it. CID
1363460-63, 65-70, 76, 78, 85, 88, 90
svn path=/trunk/; revision=71932
Mark Jansen [Wed, 13 Jul 2016 18:02:16 +0000 (18:02 +0000)]
[APPHELP] Dereference after null check (default_dir). CID
1363509
svn path=/trunk/; revision=71931
Thomas Faber [Wed, 13 Jul 2016 17:48:21 +0000 (17:48 +0000)]
[NTOSKRNL_VISTA]
- Avoid ugly hacks
CORE-11596 #resolve
svn path=/trunk/; revision=71930
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 17:35:16 +0000 (17:35 +0000)]
[NET]
No need to check for whether 'pBuffer' is NULL to call NetApiBufferFree, because:
- 'pBuffer' was used above this call without any particular checks;
- 'pBuffer' can be only null when NetUserEnum fails with an error different from NERR_Success or ERROR_MORE_DATA. But this case was actually checked for before using 'pBuffer'.
By Victor Martinez aka. Mr.Coverity ^^ :)
CID
1363629
CORE-11598 #resolve
svn path=/trunk/; revision=71929
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 16:43:16 +0000 (16:43 +0000)]
[NTOSKRNL_VISTA lib]
Initialize utf8_ch_len to zero before using it (at each turn of the for-loop). As I couldn't find this code in Wine, I couldn't see whether they already fixed it or not. Caught by Victor.
CORE-11596
svn path=/trunk/; revision=71928
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 16:33:37 +0000 (16:33 +0000)]
[SETUP]
- Fix leaking 'pSetupData' in case of failure. CID
1363604
- Since we know that in the remaining of the code, 'pSetupData' is a valid pointer, we can free it at the very end without rechecking whether it was NULL or not.
CORE-11591 #resolve
svn path=/trunk/; revision=71927
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 16:27:39 +0000 (16:27 +0000)]
[MAGNIFY]
Missing break. CID
1363532
CORE-11593 #resolve
svn path=/trunk/; revision=71926
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 16:23:12 +0000 (16:23 +0000)]
[MKHIVE]
- Fix usage of the 'Status' variable. CID
1363689
- Fix some DPRINTs.
CORE-11595 #resolve
svn path=/trunk/; revision=71925
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 15:50:44 +0000 (15:50 +0000)]
[CHARMAP]
Don't overrun FillGrid() when accessing the last elements. Rewrite the code using 'for' loops, in the same style as what is done elsewhere in the code. CID
1363552
CORE-11597 #resolve
svn path=/trunk/; revision=71924
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 15:43:08 +0000 (15:43 +0000)]
[BOOTLIB]
- BiOpenKey is being feed with the wrong ElementHandle, it should be feed with ElementsHandle one. CID
1363670 . By Victor Martinez Calvo. CORE-11600 #resolve
[BOOTMGR]
- Fix an Assign vs Compare issue. CID
1363558 . By Victor Martinez Calvo. CORE-11592 #resolve
svn path=/trunk/; revision=71923
Amine Khaldi [Wed, 13 Jul 2016 09:08:34 +0000 (09:08 +0000)]
[BOOTLIB] Remove stray semicolon from a condition in ConsoleCreateLocalInputConsole(). Patch by Victor for CID
1363701. CORE-11588
svn path=/trunk/; revision=71919
James Tabor [Wed, 13 Jul 2016 03:16:00 +0000 (03:16 +0000)]
[USER32_WINETEST] Sync with Wine Staging 1.9.11 Part 4. CORE-11368
svn path=/trunk/; revision=71918
James Tabor [Wed, 13 Jul 2016 03:09:01 +0000 (03:09 +0000)]
[User32]
- Sync/port up to Wine Staging 1.9.11 or current. See CORE-11368.
svn path=/trunk/; revision=71917
James Tabor [Wed, 13 Jul 2016 03:04:20 +0000 (03:04 +0000)]
[NtUser]
- Fix crash in User32:win:test_winproc_handles. See CORE-11368.
svn path=/trunk/; revision=71916
James Tabor [Wed, 13 Jul 2016 00:40:07 +0000 (00:40 +0000)]
[User32]
- Fix regression in API:RealGetWindowClass test due to wine sync/port.
- ReactOS use of DIALOG_get_info is an enhanced fork of the same wine function.
svn path=/trunk/; revision=71915
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 00:09:36 +0000 (00:09 +0000)]
[CONCFG]: Add needed inclusion for StrSafe functions.
svn path=/trunk/; revision=71914
Hermès Bélusca-Maïto [Wed, 13 Jul 2016 00:06:09 +0000 (00:06 +0000)]
[CONSRV]
- Fix potential Out-of-bounds access during string copy/concatenation. CID
1322098.
- Fix check for NULL after potential dereference. CID
1322175.
svn path=/trunk/; revision=71913
Hermès Bélusca-Maïto [Tue, 12 Jul 2016 23:00:50 +0000 (23:00 +0000)]
[SHELL32]
- Use StringCbCopyW
[PROGMAN]
- Use StringCbCopyW: CID #
1363712.
- Don't read registry values in a registry key if we failed to open it. CID #514350.
svn path=/trunk/; revision=71912
Hermès Bélusca-Maïto [Tue, 12 Jul 2016 22:30:55 +0000 (22:30 +0000)]
[USETUP]
- Don't hardcode buffer string size in GetPartTypeStringFromPartitionType calls.
- Possibly check whether the first character of the PartTypeString string is NULL before printing a generic partition information in case the partition type is unknown. We might check instead for the STRING_FORMATUNKNOWN string...
- Don't check for PartTypeString being NULL since it's not a pointer. CID #
1363481 and CID #
1363494.
svn path=/trunk/; revision=71911
Amine Khaldi [Tue, 12 Jul 2016 21:10:24 +0000 (21:10 +0000)]
[KERNEL32_WINETEST] Sync with Wine Staging 1.9.14 except thread tests. CORE-11511
svn path=/trunk/; revision=71910
Amine Khaldi [Tue, 12 Jul 2016 20:40:20 +0000 (20:40 +0000)]
[NTDLL_WINETEST] Partial sync with Wine Staging 1.9.14. CORE-11368 holds some remaining tests.
svn path=/trunk/; revision=71909
James Tabor [Tue, 12 Jul 2016 20:08:44 +0000 (20:08 +0000)]
[USER32_WINETEST] Sync with Wine Staging 1.9.11 Part 3. CORE-11368
svn path=/trunk/; revision=71907
James Tabor [Tue, 12 Jul 2016 20:06:30 +0000 (20:06 +0000)]
[Win32SS]
- Update (Sync/Port) User32:Text to Wine Staging 1.9.11, see CORE-11368.
svn path=/trunk/; revision=71906
James Tabor [Tue, 12 Jul 2016 18:23:04 +0000 (18:23 +0000)]
[Win32SS]
- Cleanup error codes for Classes and Menus.
- Update (Sync/Port) User32:Dialog to Wine Staging 1.9.11, see CORE-11368.
- Now pass exactly the same tests as windows, except for the two ToDos lines 1596 & 1617. The other test failures are on wine for not being compatible!
svn path=/trunk/; revision=71904
Amine Khaldi [Tue, 12 Jul 2016 15:35:42 +0000 (15:35 +0000)]
[SCHTASKS] Import from Wine Staging 1.9.14. CORE-11576
svn path=/trunk/; revision=71903
Amine Khaldi [Tue, 12 Jul 2016 11:13:34 +0000 (11:13 +0000)]
[UXTHEME_WINETEST] Sync with Wine Staging 1.9.14.
svn path=/trunk/; revision=71902
Amine Khaldi [Tue, 12 Jul 2016 11:12:58 +0000 (11:12 +0000)]
[UXTHEME] Apply Wine commit
997e204 by Louis Lenders: Fix CloseThemeData with invalid handle value. CORE-11368
svn path=/trunk/; revision=71901
Amine Khaldi [Tue, 12 Jul 2016 10:49:51 +0000 (10:49 +0000)]
[SHELL32_WINETEST] Sync with Wine Staging 1.9.14.
svn path=/trunk/; revision=71900
Amine Khaldi [Tue, 12 Jul 2016 10:46:22 +0000 (10:46 +0000)]
[PSDK] Add some missing ASSOCF_* enum elements.
svn path=/trunk/; revision=71899
Amine Khaldi [Tue, 12 Jul 2016 10:38:36 +0000 (10:38 +0000)]
[ADVAPI32_WINETEST] Sync with Wine Staging 1.9.14.
svn path=/trunk/; revision=71898
Mark Jansen [Mon, 11 Jul 2016 19:02:48 +0000 (19:02 +0000)]
[TRANSLATION] Russian translations by Nikolay Burshtyn (amber). CORE-11567 #resolve #comment Thanks!
svn path=/trunk/; revision=71896
Amine Khaldi [Mon, 11 Jul 2016 10:47:42 +0000 (10:47 +0000)]
[INCLUDES/WINE] Update test.h.
svn path=/trunk/; revision=71895
Amine Khaldi [Mon, 11 Jul 2016 10:46:47 +0000 (10:46 +0000)]
[GDI32_WINETEST] Sync with Wine Staging 1.9.14.
svn path=/trunk/; revision=71894
Hermès Bélusca-Maïto [Mon, 11 Jul 2016 01:57:47 +0000 (01:57 +0000)]
Fix usage of the first parameter for TranslateAccelerator: this should be the handle of the window that will receive the accelerator commands (not the window from which the message originates).
svn path=/trunk/; revision=71893
Eric Kohl [Sun, 10 Jul 2016 21:54:17 +0000 (21:54 +0000)]
[SERVMGR]
Service recovery page:
- Dissect the 'run process' command line and display it.
- Implement the 'Browse' button.
svn path=/trunk/; revision=71892
Eric Kohl [Sun, 10 Jul 2016 20:26:05 +0000 (20:26 +0000)]
[NEWDEV]
Fix words in newdev. (Italian translation)
Patch by decodp.
CORE-11437 #resolve #comment Thanks a lot!
svn path=/trunk/; revision=71891
Pierre Schweitzer [Sun, 10 Jul 2016 18:16:03 +0000 (18:16 +0000)]
[FASTFAT]
CcMapData 4th arg isn't a boolean but a flag. Fix it accordingly
CcPinRead 4th arg isn't a boolean but a flag. Fix it accordingly
svn path=/trunk/; revision=71890
Pierre Schweitzer [Sun, 10 Jul 2016 18:06:47 +0000 (18:06 +0000)]
[CDFS]
CcMapData 4th arg isn't a boolean but a flag. Fix it accordingly
svn path=/trunk/; revision=71889
Pierre Schweitzer [Sun, 10 Jul 2016 17:14:33 +0000 (17:14 +0000)]
[FASTFAT][CDFS]
Call CcMapData(), CcPinRead() inside a SEH block
This allows returning more significant error codes on failure
[NTOSKRNL]
Enable Thomas code for raising exceptions
CORE-9848
svn path=/trunk/; revision=71888
Mark Jansen [Sun, 10 Jul 2016 16:21:53 +0000 (16:21 +0000)]
[SDK] Add the first appcompat database, containing references to version lie shims. CORE-11302 #resolve
svn path=/trunk/; revision=71887
Mark Jansen [Sun, 10 Jul 2016 16:14:39 +0000 (16:14 +0000)]
[SDK][XML2SDB] Introducing the xml2sdb host tool, used to convert xml files to appcompat Sdb files. CORE-11302
Uses tinyxml2 to parse the xml.
Thanks to Thomas for reviewing / suggesting fixes!
svn path=/trunk/; revision=71886
Mark Jansen [Sun, 10 Jul 2016 16:06:39 +0000 (16:06 +0000)]
[APPHELP] Prepare sdbwrite related api for a new hosttool. CORE-11302
- Adding an extra argument to SdbReAlloc
- Do not rely on platform wcs* functions.
svn path=/trunk/; revision=71885
Eric Kohl [Sun, 10 Jul 2016 15:51:45 +0000 (15:51 +0000)]
[USETUP]
Add CAPS-LOCK support to the keyboard layout.
Patch by Carlo Bramini.
CORE-3368 #comment Thanks a lot!
svn path=/trunk/; revision=71884
Thomas Faber [Sun, 10 Jul 2016 14:46:37 +0000 (14:46 +0000)]
[NTOS:CC]
- Raise exceptions on failure in CcMapData if RAISE_FROM_CC_MAP_DATA is defined. This is how the function should behave, and should be enabled once all our file system drivers correctly handle this.
CORE-9848
svn path=/trunk/; revision=71883
Mark Jansen [Sun, 10 Jul 2016 14:23:58 +0000 (14:23 +0000)]
[WIN32SS] Do not try to call DevModes when it is NULL (mirror drivers). Patch by Victor Matovykh. CORE-11441 #resolve #comment Thanks!
svn path=/trunk/; revision=71882
Mark Jansen [Sun, 10 Jul 2016 00:18:20 +0000 (00:18 +0000)]
[RAPPS] Fix some translated / misspelled tags.
svn path=/trunk/; revision=71881
Hermès Bélusca-Maïto [Sat, 9 Jul 2016 23:18:39 +0000 (23:18 +0000)]
[SHELL32]
- Fix the last parameter of a StringCchCopyEx call; fix a misspelling.
- Do not exclusively use GetFileAttributesEx to retrieve file attributes (for the file properties dialog). Indeed, it happens that this API (as well as GetFileAttributes), and equivalently, NtQueryFullAttributesFile (as well as NtQueryAttributesFile), can fail on *locked system* files (on Win2k/Win2k3/Win7, and on ROS), such as C:\pagefile.sys . See for example http://stackoverflow.com/questions/
16772931/getfileattributes-on-locked-system-file and my comment in CORE-10757 . Therefore to retrieve file attributes also for these files we do a trick: we call FindFirstFile on the full path to said file. It happens that FindFirstFile can work on locked system files, and thus we are able to retrieve their attributes (+ size and file dates) as well!
See the code for more details.
CORE-10757 #resolve
svn path=/trunk/; revision=71880
Hermès Bélusca-Maïto [Sat, 9 Jul 2016 22:23:23 +0000 (22:23 +0000)]
[KERNEL32]
- Do not use a "magic number" for the return value 0xFFFFFFFF from GetFileAttributes.
- Use a meaningful variable name for retrieving the result of GetFileAttributes.
svn path=/trunk/; revision=71879
Thomas Faber [Sat, 9 Jul 2016 21:05:00 +0000 (21:05 +0000)]
[SERVMAN]
- Fix MSVC build
svn path=/trunk/; revision=71878
Thomas Faber [Sat, 9 Jul 2016 21:01:11 +0000 (21:01 +0000)]
[LIBXML2]
- Fix MSVC build (already fixed upstream)
svn path=/trunk/; revision=71877
Amine Khaldi [Sat, 9 Jul 2016 18:30:47 +0000 (18:30 +0000)]
[LIBXSLT] Update to v1.1.29. CORE-11557
svn path=/trunk/; revision=71876
Amine Khaldi [Sat, 9 Jul 2016 18:07:58 +0000 (18:07 +0000)]
[LIBXML2] Update to v2.9.4. CORE-11556
svn path=/trunk/; revision=71875
Amine Khaldi [Sat, 9 Jul 2016 17:38:40 +0000 (17:38 +0000)]
[CMAKE] Update baseaddress.cmake for the GCC build. CORE-11382
svn path=/trunk/; revision=71874
Amine Khaldi [Sat, 9 Jul 2016 17:18:33 +0000 (17:18 +0000)]
[FONTSUB] Import from Wine Staging 1.9.13. CORE-11219
svn path=/trunk/; revision=71873
Eric Kohl [Sat, 9 Jul 2016 16:51:21 +0000 (16:51 +0000)]
[SERVMAN]
Add logon and recovery property pages. Still work in progress.
svn path=/trunk/; revision=71872
Pierre Schweitzer [Sat, 9 Jul 2016 16:41:18 +0000 (16:41 +0000)]
[FLTMGR]
Fix GCC build
svn path=/trunk/; revision=71871
Pierre Schweitzer [Sat, 9 Jul 2016 16:40:31 +0000 (16:40 +0000)]
[DDK]
MS DDK defines FLT_CALLBACK_DATA_QUEUE_FLAGS as ULONG.
svn path=/trunk/; revision=71870
Pierre Schweitzer [Sat, 9 Jul 2016 16:21:13 +0000 (16:21 +0000)]
[NTFS][FREELDR]
Cherrypick r71807 by Trevor Thompson
svn path=/trunk/; revision=71869
Thomas Faber [Sat, 9 Jul 2016 15:40:02 +0000 (15:40 +0000)]
[ACPI]
- This bus hosts all physical hardware. Surely some of it can be in the paging path...
svn path=/trunk/; revision=71868
Hermès Bélusca-Maïto [Sat, 9 Jul 2016 12:32:21 +0000 (12:32 +0000)]
[EVENTVWR]
- Display 3 different "types" of logs in the tree: "system logs": Application, Security, System, that are the minimal set of standard logs present on NT systems; "application logs": all the other logs, that are available to the event log service (both "system" and "application" logs are registered in the registry, under the "EventLog" service key). Finally comes the "user logs" that consists in all the log files that are manually opened by the user inthe event log viewer.
- Use 'PEVENTLOGRECORD' instead of 'EVENTLOGRECORD *'.
- Don't hardcode the buffer length values in the size parameters used in the GetEventUserName function.
- Merge both GetDisplayNameFile and GetDisplayNameID helpers into a single GetDisplayNameFileAndID function, since the former two were always called in tandem.
- Forbid editing the labels of the tree root nodes "system"/"application"/"user" logs.
- Splitter bar: set the cursor only when it is on the bar, not when it is above the status bar...
- Resize the status bar only in WM_SIZE events.
- Remove few dead code.
svn path=/trunk/; revision=71867
Amine Khaldi [Fri, 8 Jul 2016 21:07:25 +0000 (21:07 +0000)]
[FREETYPE] Update to v2.6.4. CORE-11553 CORE-11543
svn path=/trunk/; revision=71866
Hermès Bélusca-Maïto [Fri, 8 Jul 2016 17:44:59 +0000 (17:44 +0000)]
[FLTMGR]: Remove a MSVC warning: FltObjectDereference, whose prototype is publicly defined in fltkernel.h, doesn't return any value.
svn path=/trunk/; revision=71864
Ged Murphy [Fri, 8 Jul 2016 13:41:31 +0000 (13:41 +0000)]
- Slight code cleanup
- Add missing PAGED_CODE (thanks thomas)
svn path=/trunk/; revision=71863
Ged Murphy [Fri, 8 Jul 2016 13:18:39 +0000 (13:18 +0000)]
[NTOS]
- Implement IoCreateFileSpecifyDeviceObjectHint - will be needed for fltmgr
- Rename IoCreateFile to IopCreateFile and forward both IoCreateFile and IoCreateFileSpecifyDeviceObjectHint to that routine
- Add support to IopParseDevice to check for a top level device hint and use that instead of the real device.
- Create a file object extension in IopParseDevice and use that to store our top level device hint data
- Update IoGetRelatedDeviceObject to check for file object extensions and return the 'fake' top level device if we have one
svn path=/trunk/; revision=71862
Ged Murphy [Fri, 8 Jul 2016 13:05:33 +0000 (13:05 +0000)]
[SDK]
- Add missing filter manager status codes
svn path=/trunk/; revision=71861
Ged Murphy [Fri, 8 Jul 2016 13:04:44 +0000 (13:04 +0000)]
[FLTMGR]
Move it to a more correct place in the tree
svn path=/trunk/; revision=71860
Ged Murphy [Fri, 8 Jul 2016 12:55:20 +0000 (12:55 +0000)]
[FLTMGR]
- Implement basic versions of FltRegisterFilter and FltUnregisterFilter
- Add layout of data for FLT_FILTER, FLT_INSTANCE, FLT_OBJECT and their accociated data
- Add basic rundown protection for the FLT_FILTER object
- Removed from the build for now because GCC doesn't like our fltkernel.h header
svn path=/trunk/; revision=71859
Christoph von Wittich [Fri, 8 Jul 2016 11:26:24 +0000 (11:26 +0000)]
[SETUPAPI] Properly export pSetupDoesUserHavePrivilege CORE-11544
svn path=/trunk/; revision=71856
Amine Khaldi [Fri, 8 Jul 2016 10:45:30 +0000 (10:45 +0000)]
[SETUPAPI] Properly stub pSetupDoesUserHavePrivilege() export. CORE-11544
svn path=/trunk/; revision=71855
Daniel Reimer [Fri, 8 Jul 2016 10:16:48 +0000 (10:16 +0000)]
[RAPPS]
Remove .net 4 again. We have a rule regarding entries in RAPPS. Stuff that works can be added, thats why I ask for pics proving that. I fully confirm a working setup, but thats it. I have no clue how these pics running paint.net were made, but let me add this one: ONLY pics made of vanilla TRUNK as proof please. I will be readded as soon as it really works in TRUNK.
svn path=/trunk/; revision=71854
Amine Khaldi [Fri, 8 Jul 2016 09:44:52 +0000 (09:44 +0000)]
[MBEDTLS] Update to v2.3.0. CORE-11534
svn path=/trunk/; revision=71853
Hermès Bélusca-Maïto [Thu, 7 Jul 2016 23:32:55 +0000 (23:32 +0000)]
[EVENTVWR]: Fix the look of the status bar.
svn path=/trunk/; revision=71852
Hermès Bélusca-Maïto [Thu, 7 Jul 2016 23:03:34 +0000 (23:03 +0000)]
[EVENTVWR]: Allow the user to enumerate the events from the oldest to the newest, or vice-versa.
svn path=/trunk/; revision=71851
Hermès Bélusca-Maïto [Thu, 7 Jul 2016 21:52:22 +0000 (21:52 +0000)]
[EVENTVWR]
- Change the closed-folder icon, by Jared Smudde :)
- Add "open" and "log settings" menu items. Implementation will be done later.
svn path=/trunk/; revision=71850
James Tabor [Thu, 7 Jul 2016 17:22:10 +0000 (17:22 +0000)]
[USER32_WINETEST] Sync with Wine Staging 1.9.11 Part 3. CORE-11368
svn path=/trunk/; revision=71849
Daniel Reimer [Thu, 7 Jul 2016 16:30:21 +0000 (16:30 +0000)]
[RAPPS]
Auto Fixup of dead links, fix some BOMs, sizes and their units
svn path=/trunk/; revision=71848
James Tabor [Thu, 7 Jul 2016 15:37:02 +0000 (15:37 +0000)]
[USER32_WINETEST] Sync with Wine Staging 1.9.11 Part 2. CORE-11368
svn path=/trunk/; revision=71847
James Tabor [Thu, 7 Jul 2016 15:21:54 +0000 (15:21 +0000)]
[NtUser]
- Patch by Victor Matovykh : Cleanup and optimization. See CORE-11479.
svn path=/trunk/; revision=71846
James Tabor [Thu, 7 Jul 2016 15:20:03 +0000 (15:20 +0000)]
[USER32_WINETEST] Sync with Wine Staging 1.9.11 Part 1. CORE-11368
svn path=/trunk/; revision=71845
Daniel Reimer [Thu, 7 Jul 2016 11:12:54 +0000 (11:12 +0000)]
[RAPPS]
Add Freemat to the React OS application manager
CORE-10128 #resolve #comment Added, thx ^^
svn path=/trunk/; revision=71844
Daniel Reimer [Thu, 7 Jul 2016 11:09:21 +0000 (11:09 +0000)]
[RAPPS]
New app to Manager Apps by r57zone (author of software)
CORE-11332 #resolve #comment Added, thx ^^
svn path=/trunk/; revision=71843
Daniel Reimer [Thu, 7 Jul 2016 11:04:54 +0000 (11:04 +0000)]
[RAPPS]
Scilab for Rapps by Rama Teja Gampa
CORE-10977 #resolve #comment Added, thx ^^
svn path=/trunk/; revision=71842
Daniel Reimer [Thu, 7 Jul 2016 10:58:26 +0000 (10:58 +0000)]
[RAPPS]
Add Far Manager in ReactOS App Manager
ROSAPPS-328 #resolve #comment Added, thx ^^ Btw, ROSAPPS is NOT for RAPPS entries, but for rosapps subtree bugreports.
svn path=/trunk/; revision=71841
Daniel Reimer [Thu, 7 Jul 2016 10:28:41 +0000 (10:28 +0000)]
[RAPPS]
Add .NET framework 4.0 to RAPPS by Alexander Rechitskiy
CORE-11523 #resolve #comment Added, thx for that nice find ^^
svn path=/trunk/; revision=71840
Daniel Reimer [Thu, 7 Jul 2016 10:22:02 +0000 (10:22 +0000)]
[RAPPS]
Add unxutils to rapps
CORE-10701 #resolve #comment Added, thx ^^
svn path=/trunk/; revision=71839
Daniel Reimer [Thu, 7 Jul 2016 10:20:05 +0000 (10:20 +0000)]
[RAPPS]
Add tcc 0.9.26 by Mark Jansen
CORE-10636 #resolve #comment Added, thx ^^
svn path=/trunk/; revision=71838
Hermès Bélusca-Maïto [Wed, 6 Jul 2016 23:14:56 +0000 (23:14 +0000)]
[EVENTVWR]: Improve the user interface of the Event Log Viewer:
- Use a tree to list the available system logs (and in the future, the manually opened logs within the viewer).
- Allow the user to resize the treeview/listview.
- Use the standard shell about-box dialog to display the "About..." notice + copyright.
- Improve the Event Log Viewer icon, and add new ones (folders + eventlog file).
svn path=/trunk/; revision=71836
Mark Jansen [Wed, 6 Jul 2016 19:30:59 +0000 (19:30 +0000)]
[SHELL32] Disable Paste menu items when no items are in the clipboard. Patch by Jared Smudde. CORE-11492 #resolve #comment Thanks!
svn path=/trunk/; revision=71834
Thomas Faber [Wed, 6 Jul 2016 10:52:08 +0000 (10:52 +0000)]
[XDK]
- Define DRIVER_DISPATCH_PAGED and DRIVER_DISPATCH_RAISED
svn path=/trunk/; revision=71833
Christoph von Wittich [Wed, 6 Jul 2016 06:20:36 +0000 (06:20 +0000)]
[GDI32]
reduce diff to wine (metafile)
svn path=/trunk/; revision=71831
Aleksandar Andrejevic [Wed, 6 Jul 2016 04:26:16 +0000 (04:26 +0000)]
[NTVDM]
Implement an 800x600 256-color mode for testing purposes. Its register values
and mode information should be correct already.
Properly reset the VCLKs and the MCLK.
Clear the screen after switching to an extended video mode.
Fix the screen size computation in "High Resolution" modes.
svn path=/trunk/; revision=71830
Hermès Bélusca-Maïto [Tue, 5 Jul 2016 23:42:40 +0000 (23:42 +0000)]
[CLIPBRD]: Use NULL for null pointer.
[EVENTVWR]: Add folder icons (needed for later).
svn path=/trunk/; revision=71829
Thomas Faber [Tue, 5 Jul 2016 22:24:54 +0000 (22:24 +0000)]
[NTOS:OB]
- Always set LinkHandle in NtOpenSymbolicLinkObject, as shown by tests
CORE-11509 #resolve
svn path=/trunk/; revision=71828
Hermès Bélusca-Maïto [Tue, 5 Jul 2016 21:30:44 +0000 (21:30 +0000)]
[RAPPS(_new)][REGEDIT]: Fix our usage of (Begin)DeferWindowPos. See https://blogs.msdn.microsoft.com/oldnewthing/
20050706-26/?p=35023 for more details.
svn path=/trunk/; revision=71827