d505c2d comctl32/monthcal: Make sure set focus date is valid before using it (Valgrind).
a56f49c comctl32/monthcal: Make sure set today date is valid before using it (Valgrind).
9231452 comctl32/monthcal: Initialize day field before setting final hit test result (Valgrind).
1d45250 comctl32/listview: Invalidate the focus rectangle when the control gets or loses focus.
d6fdbae comctl32: New high resolution cursors generated from SVG.
11c557b comctl32: Don't FIXME on handled cases.
5b06498 comctl32/taskdialog: Added support for custom buttons.
9e3ebed comctl32/taskdialog: Added TaskDialog() export.
d93ae6f comctl32/toolbar: Support undocumented IDs for standard bitmap lists.
ece34a1 comctl32/toolbar: Don't add NULL imagelist entries.
e558858 comctl32: Change some overly exciting tracing messages.
svn path=/trunk/; revision=75862
84f5761 quartz: Use standard wine_dbgstr_longlong.
e994c62 quartz: Use nAvgBytesPerSec to calculate length.
e1d14d2 quartz: Restore a comment explaining mediatime.
bf9eaac quartz: Small readability fix.
svn path=/trunk/; revision=75858
6a6f336 dplayx: Implement IDirectPlayLobby3 EnumAddressTypes.
2ef274b dplayx: Implement IDirectPlay4 EnumConnections.
4f4b3be dplayx: First name server address may be null.
svn path=/trunk/; revision=75856
5214b47 dinput: Do not wait for hook thread startup in IDirectInput8::Initialize.
83a3887 dinput: Avoid possible deadlock when CS are acquired in different order.
49fdde1 dinput: Use proper size for combobox controls.
b50d1fa dinput: Limit axes while remaping broken devices.
svn path=/trunk/; revision=75855
Disable the MountMgr thread; given the current storage stack state, it's useless and can even cause troubles
CORE-13769
svn path=/trunk/; revision=75836
Don't call MmBuildMdlForNonPagedPool in CcWriteVirtualAddress():
- BaseAddress comes from PagedPood
- Windows returns a locked MDL from paged pool
- See tests from r75833 that are getting fixed with that revision
This fixes assertions failures on BtrFS write.
CORE-13763
CORE-13769
svn path=/trunk/; revision=75834
Add a test that shows that MDLs issued by Cc for paging IOs are not in the correct state (nor correctly allocated)
CORE-13769
svn path=/trunk/; revision=75833
Contains the work done by sanchaez (Alexander Shaposhnikov) during GSoC 2017:
* Better information in the application details view.
* Bulk installation of multiple applications at once.
* Command-line automation of installation (single and bulk).
(for more details, see the related blog posts)
TRANSLATORS: Many resources have been changed, and they are in need of review!
svn path=/trunk/; revision=75826
- Added copy constructor and assignment from CSimpleStringT to CStringT
This fixed initialization while using `operator+` in GCC.
```CStringW s = a + b; ```
operator+ operators are defined for CSimpleStringT.
It worked in MSVC because it did implicit conversion of CSimpleStringT to PCXSTR which called appropriate CStringT constructor.
GCC doesn't do such conversions and triggers an error.
- Unified `operator=(CStringT, PCXSTR)` with the rest
svn path=/branches/GSoC_2017/rapps/; revision=75822