Mark Jansen
bae083355d
[SYSSETUP] Add a missing break
2019-04-03 19:44:16 +02:00
Maxim Smirnov
39c0fd5722
[SHELL32] Fix version info in the file dialog
2019-04-03 00:51:24 +02:00
Julien Schueller
23d0aead53
[KERNEL32] Fix typo in kernel32.spec ( #1453 )
2019-04-02 15:48:41 +02:00
Timo Kreuzer
be97da34ac
[NETAPI32] Fix NetUserEnum to work on x64
...
The previous implementation used the resume_handle parameter to return a pointer to the active enumeration context, but resume_handle is a DWORD. To support 64 bit pointers, the enumeration context is inserted into a global linked list and given a unique 32 bit value as identifier for later lookup.
The way the function is implemented, leaking a data structure while the MSDN description does not indicate that, seems a little questionable in general, but that is something that I leave to the original author to investigate.
2019-04-02 01:45:51 +02:00
Timo Kreuzer
61e35141e8
[SETUPAPI] Use ClassInstallReserved field instead of Reserved to store a pointer.
...
The Reserved field is ULONG and we need ULONG_PTR. ClassInstallReserved was unused so far. I have no idea whether this is correct, but it cannot be more incorrect than what we had.
2019-04-01 22:20:39 +02:00
Hervé Poussineau
6cc607bac2
[SETUPAPI] SetupDiGetDeviceInfoListClass: fix buffer overflow (and return correct results)
2019-04-01 11:38:32 +02:00
Hervé Poussineau
faa938e9dc
[USERENV] Initialize variable before using it
2019-04-01 11:38:32 +02:00
Hervé Poussineau
6a1c78b37b
[GLU32] Prevent a warning when comparing 'this' against 0
2019-04-01 11:38:32 +02:00
Hervé Poussineau
6668178cff
[PSDK] Remove throw specifiers, deprecated in C++11
2019-04-01 11:38:32 +02:00
Thomas Faber
ca86ee9c03
[MBEDTLS] Update to version 2.7.10. CORE-15895
2019-03-30 14:57:40 +01:00
Thomas Faber
743951eccf
[LIBTIFF] Update to version 4.0.10. CORE-15854
2019-03-26 10:14:47 +01:00
Yaroslav Kibysh
cc7c6d21f8
[DEVMGR] Fix Ukrainian translation ( #1441 )
2019-03-25 23:15:00 +01:00
Eric Kohl
5a2911d7d8
[SYSDM] Add the 'Copy to' dialog and move the 'Change Profile Type' dialog a little.
2019-03-25 00:19:58 +01:00
Stanislav Motylkov
cd7011388e
[COMCTL32] Edit: Fix caret and scroll position
...
Based on patch by JIRA contributor 'I_Kill_Bugs'. CORE-15780
2019-03-24 23:26:20 +01:00
Hermès Bélusca-Maïto
780f2ba215
[USER32][COMCTL32] Move the auto radio button group logic from BM_SETCHECK to WM_LBUTTONUP handler.
...
CORE-8526
Import Wine commit:
96d0af52eb
"user32: Move the auto radio button group logic from BM_SETCHECK to WM_LBUTTONUP handler.
This patch also changes the logic to get the control style with WM_GETDLGCODE
instead of GetWindowLong to make the message test pass.
"
by Dmitry Timoshkov.
See bug report https://bugs.winehq.org/show_bug.cgi?id=42010
- (ReactOS-only) Fix also the corresponding logic in COMCTL32.
2019-03-24 17:23:24 +01:00
Yaroslav Kibysh
a30e644dc4
[EXPLORER][SHPOLICY] Implement "NoSimpleStartMenu" policy ( #1258 )
...
- Enable "New Start Menu" control for all languages.
- Implement the "NoSimpleStartMenu" policy in shpolicy.c and its usage in explorer.
- Hide controls instead of disabling (as in Win XP/Vista).
2019-03-24 14:56:43 +01:00
Eric Kohl
9a4676f19f
[SYSDM] Get a profiles 'State' value and use it to display the profile type.
2019-03-24 06:50:24 +01:00
Baruch Rutman
1078479358
[LPK] Implement LpkGetTextExtentExPoint(). ( #1362 )
...
- Add argument checking.
- Use logic from NtGdiGetTextExtentExW().
2019-03-23 23:31:02 +01:00
Yaroslav Kibysh
505d27cbef
[SYSDM] Update Russian and Ukrainian translations ( #1437 )
2019-03-23 22:18:42 +01:00
Eric Kohl
d4b638d7c8
[SYSDM] Simplify AddUserProfile() by using fixed size buffers for account and domain names and handle unknown and deleted accounts properly. Also fix fonts for asian languages.
2019-03-23 20:58:03 +01:00
Stanislav Motylkov
cc99d3ad5f
[SHELL32] Add line bar to About dialog for consistence
...
Addendum to f9d2931
. CORE-15215
2019-03-23 19:11:28 +01:00
Eric Kohl
ea2ca8fa91
[SYSDM] Add the 'Change Profile Type' dialog.
2019-03-23 18:49:40 +01:00
Yaroslav Kibysh
3999e875be
[SHPOLICY] Fix the missing backslash in SHRestricted. CORE-15666 ( #1267 )
...
Import Wine commit https://source.winehq.org/git/wine.git/?a=commit;h=dbbfa481539acd29de47ff6cd5cc2d24a2e01871
Original patch from Yaroslav Kibysh, reported to Wine and committed there by Fabian Maurer.
Thank you all!
2019-03-23 18:28:39 +01:00
Hermès Bélusca-Maïto
b9148b8c62
[WTSAPI32][PSDK] Addendum to 27ed609a
: Some of the WTS_INFO_CLASS values are NT6-SP1+
2019-03-23 16:31:15 +01:00
Andrew Boyarshin
27ed609acd
[WTSAPI32] Implement WTSConnectState and WTSClientProtocolType in WTSQuerySessionInformation
...
Since ReactOS doesn't actually support non-local WinSTA/WTS capabilities, this seems to be a good way to reduce spam in the log while providing correct behaviour.
Also call Unicode version from ANSI one to reduce code duplication.
2019-03-23 16:06:10 +01:00
Stanislav Motylkov
56ccf8d832
[COMCTL32] Edit: Fix rectangle overflow when inserting characters
...
Based on patch by JIRA contributor 'I_Kill_Bugs'. CORE-11475
2019-03-23 15:52:43 +01:00
Yaroslav Kibysh
8fb10879fc
[ACPPAGE][SYSDM] Update Ukrainian translation ( #1435 )
2019-03-23 15:20:34 +01:00
Eric Kohl
6c6e7b82fc
[SYSDM] Implement the 'delete profile' button, except for deleting the profile.
2019-03-21 21:58:02 +01:00
Eric Kohl
b80400ed10
[SYSDM] Update the buttons on the user profile dialog after adding the profiles to the listview.
2019-03-21 21:58:01 +01:00
Stanislav Motylkov
ffc4e30ce5
[SYSDM] Update Russian translation
...
Addendum to 71f84a3
.
2019-03-20 23:49:03 +01:00
Stanislav Motylkov
400a42458c
[ACPPAGE] Update Russian translation
...
Addendum to ab3451a
.
2019-03-20 23:49:03 +01:00
Eric Kohl
71f84a3b13
[SYSDM] Add some strings that will be used in the user profile dialog.
2019-03-19 23:19:41 +01:00
Stanislav Motylkov
8e05f5509c
[MSI] Allow to pass product key validation check
...
CORE-14710 CORE-15864
2019-03-19 23:05:57 +01:00
Luo Yufan
4785291ff3
[SAMSRV] Update Chinese translation
2019-03-19 23:05:34 +01:00
Thomas Faber
49fbaa758e
[RICHED20] Simplify MSVC thiscall & stdcall wrappers.
...
Imports Wine commit b64511c00a5.
2019-03-19 21:19:20 +01:00
Eric Kohl
be54b37dd6
[USERENV] UnloadUserProfile: When a profiles ref count gets 0, delete the profile if the user is a member of the guests group.
2019-03-18 23:27:29 +01:00
Mark Jansen
ab3451aea1
[ACPPAGE] Revamp the 'edit' page to easier select different layers
2019-03-18 21:24:44 +01:00
Eric Kohl
c8d44606d6
[USERENV] Implement GetProfileType().
2019-03-17 17:51:32 +01:00
Eric Kohl
0f21a8a6e6
[USERENV] LoadUserProfileW: Check the user for Administators and Guests group membership and set the State value accordingly.
...
See https://www.pcreview.co.uk/threads/purpose-of-the-state-key-located-in-users-profiles.2939114/post-9722112
2019-03-17 12:44:54 +01:00
Eric Kohl
646ab9286c
[NETAPI32] NetUserEnum, NetUserGetInfo: Get the user privileges and auth flags for info levels 1, 2, 3, 4 and 11.
2019-03-17 12:34:49 +01:00
Eric Kohl
cf6a5d6e7c
[USERENV] Store the profiles load time, flags and state in the profile list.
2019-03-16 19:13:15 +01:00
Jared Smudde
6707efc534
[SHELL32] Disable the Hardware tab in the properties dialog for Network drives ( #1249 )
...
This matches Windows behaviour.
2019-03-16 15:37:56 +01:00
Stanislav Motylkov
62595d39a6
[SYSDM] Update SMBIOS parsing code
2019-03-16 11:16:55 +01:00
Eric Kohl
7d28dfd184
[USERENV] Use a reference counter when loading and unloading profiles. Unload the hive only when the reference counter reaches 0. This fixes the remaining bugs in "userenv_apitest LoadUserProfile".
2019-03-16 07:45:30 +01:00
Joachim Henze
e3e173ffaa
[COMCTL32] Combobox Implement logic for set and get dropdown height CORE-15833
...
by import of Wine commit
313c63e194
merged from current Wine head.
Thanks to patches author Fabian Maurer
and also Doug Lyons for tests and adding initial the merge-patch.
2019-03-16 02:11:00 +01:00
Eric Kohl
05886b83e9
[USERENV] Use a mutex to serialize profile loading and unloading.
2019-03-15 21:20:14 +01:00
Katayama Hirofumi MZ
332ca5f572
[OLE32] Implement WS_EX_ACCEPTFILES ( #1403 )
...
The window that has WS_EX_ACCEPTFILES extended style, should pretend like a drop target that accepts CF_HDROP data. CORE-11238
2019-03-15 22:31:13 +09:00
Eric Kohl
30c501fc9f
[USERENV] LoadUserProfileW: If a user profile has already been loaded, just open and return the profile key.
2019-03-14 23:49:16 +01:00
Mark Jansen
ee62837ec0
[SHIMENG] Implement experimental support for multiple hooks on the same function
2019-03-14 20:02:01 +01:00
Mark Jansen
6abe0e50aa
[SDK][SHIMENG] Ensure that module entrypoints are not called while loading the shim engine
...
This is done by marking everything that is already loaded but not 'processed'.
After the shim engine is done initializing, the original state is restored,
with the exception of the shim engine itself.
CORE-15846
2019-03-14 20:02:01 +01:00
Mark Jansen
a1f6a6bdc3
[LDR] Do not call module entrypoints while loading the shim engine.
...
Manually call the shim engine entrypoint
CORE-15846
2019-03-14 20:02:01 +01:00
Mark Jansen
cfdb7d564c
[SHIMENG] Don't crash on a shim not found
...
CORE-15846
2019-03-14 20:02:01 +01:00
Mark Jansen
0ebeced143
[SHIMENG] Find shims case-insensitive
...
CORE-15845
2019-03-14 20:02:00 +01:00
Mark Jansen
cdc8b721da
[ACLAYERS] Add stubplemented IgnoreLoadLibrary shim
...
CORE-15845
2019-03-14 20:02:00 +01:00
Mark Jansen
0fdfdcb1ea
[ACLAYERS] Simplify ForceDXSetupSuccess as suggested by Thomas
2019-03-14 20:01:47 +01:00
Eric Kohl
85c5d035d9
[NETAPI32] NetUserAdd, NetUserSetInfo: Start to set parm_err in case of invalid parameters.
2019-03-12 01:02:47 +01:00
Eric Kohl
33eb43d6e7
[NETAPI32] NetUserSetInfo: Support the logon hours for level 2, 3, 4, 22 and 1020. Also make sure that we do not leak memory on invalid levels.
2019-03-12 00:20:07 +01:00
Eric Kohl
0425d866bf
[NETAPI32] NetUserGetInfo: Build and return the users SID for level 4 and 23.
2019-03-11 22:31:36 +01:00
Arnav Bhatt
c527f72f23
[TRANSLATION] Hindi translation of the shell extensions. ( #1405 )
2019-03-11 16:52:21 +01:00
Luo Yufan
a0506042a6
Merge pull request #1412 from njlyf2011/improve-zh-translation
...
[TRANSLATION] Update Traditional Chinese translation
2019-03-11 16:50:17 +01:00
Mark Jansen
b18da6730e
[ACLAYERS] Implement the ForceDXSetupSuccess shim
...
This shim is used on older installers that try to install DirectX,
but encounter errors doing so with the bundled setup.
CORE-15814
2019-03-10 12:45:35 +01:00
Mark Jansen
76af1fb019
[ACLAYERS][ACGENRAL] Do not use the crt entrypoint.
2019-03-10 12:45:22 +01:00
Eric Kohl
462418fe38
[NETAPI32] Initialize parm_err
2019-03-09 20:26:00 +01:00
Arnav Bhatt
c17bcb65b9
[TRANSLATION] Hindi translation of SYSSETUP AND SAMSRV. ( #1400 )
2019-03-08 15:48:20 +01:00
Arnav Bhatt
3a85677531
Hindi translation of comdlg32. ( #1391 )
...
Hindi translation of comdlg32.
2019-03-07 10:05:08 +01:00
Mark Jansen
08deb1d9de
[ZIPFLDR] Allow the shell extension to extract passworded zip files
2019-03-06 23:09:35 +01:00
Mark Jansen
410320df06
[ZIPFLDR] Move CConfirmReplace to a new file
2019-03-06 23:09:35 +01:00
Timo Kreuzer
c25857f291
[SPEC] Add missing newlines
2019-03-06 00:40:29 +01:00
Timo Kreuzer
f5f6ea2965
[REACTOS] Fix 64 bit issues
2019-03-04 21:58:42 +01:00
Timo Kreuzer
3d3377a5c0
[LIBTIRPC] Silence MSVC warnings
2019-03-04 21:58:42 +01:00
Eric Kohl
ac73ba7db6
[MSV1_0] Check logon hours and workstation names on logon. Also return the machine name on logon and fix the LOGONSERVER environment variable.
2019-03-04 17:26:27 +01:00
Ged Murphy
0649f25b48
[SHELL32] Implement SHTestTokenMembership and forward IsUserAnAdmin to it
...
Moved to the bottom of the file with the other ros functions to help keep wine syncs easier.
2019-03-04 11:54:43 +00:00
Eric Kohl
6748d72c9f
[MSV1_0] Export LsaApLogonUserEx2 instead of LsaApLogonUser and remove the outdated logon functions.
2019-03-04 10:20:10 +01:00
Eric Kohl
ef4ee94feb
[LSASRV] LsapLogonUser: Support LsaTokenInformationNull logins.
2019-03-04 01:37:15 +01:00
Eric Kohl
96466710f8
[MSV1_0] LsaApLogonUser: Pass the Authenticating Authority to the caller.
2019-03-04 01:37:14 +01:00
Joachim Henze
1d7287288d
[SHELL32] Update all languages RCs to fix possible text truncation CORE-15765
...
IDD_BROWSE_FOR_FOLDER displays text controlled by the calling applications in
IDC_BROWSE_FOR_FOLDER_TITLE. Its old height could lead to text truncation
for existing 3rd party apps.
The new height value for IDC_BROWSE_FOR_FOLDER_TITLE
was inspired by IDC with the same from dialog IDD_BROWSE_FOR_FOLDER_NEW.
I could change all languages to the same height,
as dimensions of the dialog and surrounding controls were same.
2019-03-03 02:23:34 +01:00
Joachim Henze
026c575577
[MSI] In dialogs show titlebar buttons CORE-15301
...
Import the Wine fix
https://source.winehq.org/git/wine.git/?a=commit;h=84e6b331918d57f39e20a3063b67eb7fc0876288
Many thanks to the fixes author Fabian Maurer.
2019-03-03 01:26:59 +01:00
Eric Kohl
e88a6b2053
[SETUPAPI] Implement CM_Next_Range()
2019-03-02 20:59:12 +01:00
Bișoc George
0bc8e2a5bb
[COVERITY][SETUPAPI] Release the blocks of memory when done
...
pRange variable allocates blocks of memory from the heap by HeapAlloc() although this resource is never freed afterwards.
COVERITY CID 1427056
2019-03-02 20:39:09 +01:00
Pierre Schweitzer
6ee2f9882c
[MSAFD] Don't leak event while querying/setting socket options
2019-02-25 22:34:29 +01:00
Pierre Schweitzer
6bc61f63f1
[MSAFD] Implement socket options SO_SNDBUF and SO_RCVBUF
2019-02-25 22:34:29 +01:00
Mark Jansen
c01fa8e9c1
[APPHELP] Implement SdbRegisterDatabase[Ex]
...
CORE-11301
2019-02-25 20:00:35 +01:00
Mark Jansen
28a091ac12
[APPHELP][APPHELP_APITEST] Implement SdbGetDatabaseInformation
...
CORE-11301
2019-02-25 20:00:34 +01:00
Mark Jansen
5c05a29d3d
[APPHELP] Implement ShimDumpCache and ShimFlushCache
...
These functions simply call into the Base* functions,
having a prototype that is compatible with rundll32
CORE-11301
2019-02-25 20:00:34 +01:00
Mark Jansen
f2f54a052e
[SDB] Initial SdbRegisterDatabase stubs
...
CORE-11301
2019-02-25 20:00:34 +01:00
Luo Yufan
ca9cdce760
[TRANSLATION] Update Chinese and Traditional Chinese translations. ( #1369 )
2019-02-25 00:36:53 +01:00
Pierre Schweitzer
f6c50cb93d
[MSAFD] Make WSPSetSockOpt() SO_RCVBUF stub return success
2019-02-24 21:25:39 +01:00
Eric Kohl
77e3fbfad5
[MMSYS] Volume page: Initialize the volume trackbar before it might be disabled because the tick marks must be visible on a disabled trackbar.
2019-02-24 17:15:13 +01:00
Eric Kohl
601b2532e1
[MMSYS] Sounds page: Update the 'Play' button and the current item in the 'Program events' treeview when a sound is selected or deselected.
2019-02-24 16:56:55 +01:00
Eric Kohl
722797c779
[SNDVOL32] Disable only the 'Play' button, when no audio device is avaiblable.
2019-02-24 16:16:53 +01:00
Stanislav Motylkov
8c90a67da6
[MSGINA] Add bar bitmap to logon and shutdown dialogs
2019-02-24 15:52:49 +01:00
Stanislav Motylkov
fe1d611e0f
[MSGINA] Improve Ctrl-Alt-Del invitation window
2019-02-24 15:52:49 +01:00
Stanislav Motylkov
f9d29319a6
[MSGINA] Implement rotation bar animation
...
Based on initial work by Bisoc George. Rotation bar image by Zcooger. CORE-15215
2019-02-24 15:52:49 +01:00
Eric Kohl
fb34029fde
[MMSYS] Disable the 'Low' and 'High' text of the volume trackbar and the 'Place volume icon in the taskbar' checkbox when no sound device is available.
2019-02-24 15:36:08 +01:00
Pierre Schweitzer
d1598788cd
[WS2_32] Use SEH in WSCGetProviderPath()
2019-02-23 13:35:07 +01:00
Pierre Schweitzer
02e84521cc
[WS2_32] Implement WSCGetProviderPath()
2019-02-23 10:57:30 +01:00
Mark Jansen
860f96f431
[MSI] Prevent uninitialized variable usage
2019-02-18 23:00:54 +01:00
Mark Jansen
2fade6ede4
[MSI] Do not leak rootkey
2019-02-18 23:00:54 +01:00
Mark Jansen
d766391231
[SHELL32] Abort change notifications on a nullptr
...
CORE-15703
2019-02-18 23:00:31 +01:00
Thomas Faber
8dcdf82e71
[COMCTL32] Check for NULL pointer when handling BCM_GETIDEALSIZE.
...
Fixes crash in comctl32_winetest:button.
2019-02-17 09:51:18 +01:00
Thomas Faber
3445129dd3
[COMCTL32] Add NULL checks to SetWindowSubclass.
...
Imports Wine commit 04847e68f87 by Sven Baars.
Fixes crash in comctl32_winetest:subclass.
2019-02-17 09:51:16 +01:00
Pierre Schweitzer
db3f3921b6
[KERNEL32] Stub SetThreadErrorMode()
...
Now, Steam crashes because of the stub of GetSystemTimePreciseAsFileTime
CORE-14966
2019-02-16 14:12:55 +01:00
Pierre Schweitzer
2b1f6c8b0d
[MSAFD] Add an initial implementation of SIO_GET_EXTENSION_FUNCTION_POINTER IOCTL
...
Also stub the related functions the IOCTL will return, namely: WSAID_ACCEPTEX,
WSAID_CONNECTEX, WSAID_DISCONNECTEX, WSAID_GETACCEPTEXSOCKADDRS
This will allow Steam client not to fail in an ASSERT
related to the Steam client PlatformSocketsInit function.
Even though, this doesn't fix Steam running on ReactOS since its UI requires
a Windows 7 API from Kernel32: SetThreadErrorMode().
Nota: its crash got fixed thanks to the Wine sync done recently.
CORE-14966
2019-02-16 13:51:32 +01:00
Pierre Schweitzer
22cb300805
[IPHLPAPI] Properly handle GetModuleBaseName failure
...
CID 1442662, 1442663
2019-02-16 09:05:15 +01:00
Pierre Schweitzer
93b0957641
[IPHLPAPI] Check pointers when returning module info from specific connection
2019-02-16 09:00:06 +01:00
Pierre Schweitzer
22f60faf43
[IPHLPAPI] Remove dead code
...
CID 513306, 1442673, 1442697
2019-02-16 08:48:08 +01:00
Bișoc George
67a3747722
[CRYPTEXT] Add Romanian & Italian translations ( #1352 )
2019-02-13 13:11:17 +01:00
Pierre Schweitzer
6295cc506e
[OOPS] That was not meant to be pushed/commited
2019-02-10 20:52:55 +01:00
Pierre Schweitzer
d2c71d761e
[CRYPTEX] Add French translation
2019-02-10 20:43:14 +01:00
Stanislav Motylkov
718ced9f3a
[CRYPTEXT] Add russian translation
...
Addendum to d56d9c1
.
2019-02-10 20:41:35 +01:00
Baruch Rutman
d56d9c1aaa
[CRYPTEXT] Make extension localizable, and add an icon for certificate files ( #1347 )
...
- Localize error message and shell file extension description.
- Added Hebrew resources.
- Added Icon.
The icon is the Tango icon named "certificate". If anybody has a idea for more fitting icon please recommend it.
Follow up of #1343
CORE-15736
2019-02-10 17:57:43 +01:00
Hermès Bélusca-Maïto
c0d97cec88
[NETCFGX] Fix an assignment typo.
2019-02-10 17:30:56 +01:00
Mark Jansen
0bdca09a85
[IPHLPAPI] Preserve decoration in exported symbols
...
CORE-8462
CORE-15665
2019-02-10 13:44:08 +01:00
Mark Jansen
fb7a0344cd
[CRYPTEXT] Add a minimal shell extension that will show the certificate dialog
2019-02-09 01:44:39 +01:00
Mark Jansen
27cc4c6a08
[LDR] Check forwarded imports against the manifest before trying to load them
...
CORE-15729
2019-02-08 21:24:01 +01:00
Mark Jansen
d93e516747
[LDR] Add support for .local files
...
CORE-187
2019-02-07 18:48:49 +01:00
Eric Kohl
d5ceace419
[MMSYS] Take the balance between channels into account for the master volume trackbar.
2019-02-04 23:54:04 +01:00
Amine Khaldi
e98ef4992e
[WINDOWSCODECS] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:12:26 +01:00
Amine Khaldi
46add00db5
[WBEMPROX] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:10:55 +01:00
Amine Khaldi
8786e12d13
[WBEMDISP] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:09:55 +01:00
Amine Khaldi
f8a6a70be1
[VERSION] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:09:00 +01:00
Amine Khaldi
72fa0fd6cc
[VBSCRIPT] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:07:56 +01:00
Amine Khaldi
c0b82105b5
[USP10] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:06:21 +01:00
Amine Khaldi
ad73c0a040
[URLMON] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:04:30 +01:00
Amine Khaldi
9622551c51
[T2EMBED] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:03:27 +01:00
Amine Khaldi
8d3e69919b
[SXS] Sync with Wine Staging 4.0. CORE-15682
2019-02-04 13:02:29 +01:00
Luo Yufan
96d1cd2b62
[TRANSLATION] Update Chinese translation.
2019-02-03 13:17:13 +01:00
Andrew Cook
d8e92b5a0a
Merge pull request #1335 from ariscop/CMP0065
...
Fixes for upstream cmake
2019-02-03 12:57:20 +01:00
Thomas Faber
1a14dcb53f
[RPCRT4][RPCRT4_WINETEST] Don't unset IDL_FLAGS. Fixes build on 64 bit hosts.
2019-02-02 19:06:04 +01:00
Eric Kohl
8687529bdf
[SETUPAPI] Add a stub for SetupDiDeleteDeviceInterfaceData to make the wine tests work.
2019-02-02 15:13:35 +01:00
Amine Khaldi
876fef085a
[SHDOCVW] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 14:16:02 +01:00
Amine Khaldi
dbfaf10dc0
[RICHED20] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 14:10:37 +01:00
Amine Khaldi
9ce8769f4e
[QMGR] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 13:30:06 +01:00
Amine Khaldi
ab64b47497
[PROPSYS] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 13:28:11 +01:00
Amine Khaldi
59e9abd907
[PIDGEN] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 13:27:41 +01:00
Amine Khaldi
c9de708a9b
[PDH] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 13:26:39 +01:00
Amine Khaldi
4abf2277a1
[OLEDLG] Sync with Wine Staging 4.0. CORE-15682
2019-02-02 13:25:12 +01:00
Thomas Faber
42b5f5ec06
[OLEAUT32] Add AMD64 version of call_double_method aka fix build.
2019-02-01 18:09:52 +01:00
Amine Khaldi
b6fdb56b9a
[RPCRT4] Sync with Wine Staging 4.0. CORE-15682
2019-01-30 12:31:33 +01:00
Joachim Henze
1e05f9cc32
[COMCTL32] Revert "button: Don't erase the area of the checkbox or the text."
...
This reverts commit 0.4.12-dev-347-g
75a80ec823
by explcit request of Giannis Adamopoulos.
I double-checked and confirm, that
this revert fixes both regressions CORE-15595 & CORE-15696.
On the downside the revert will intensify again the regression CORE-13278
(will make the text flash again as well).
Giannis Adamopoulos mentioned earlier, that using double-buffering
eventually could be a valid way out of CORE-13278 instead.
2019-01-29 19:25:57 +01:00
Ștefan Fulea
5417742f48
[TRANSLATION] Add Romanian to devcpux, intl.inf, and some rosapps
2019-01-29 13:48:48 +01:00
Ștefan Fulea
092b67c723
[TRANSLATION] Improve the existing translated contents
2019-01-29 13:48:48 +01:00
Ștefan Fulea
211ad8c73d
[TRANSLATION] Update the existing romanian resources
...
This includes both newly added and previously left untranslated strings.
2019-01-29 13:48:48 +01:00
Amine Khaldi
5db885cae7
[OLEAUT32] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:18:42 +01:00
Amine Khaldi
016864f8ff
[OLEACC] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:16:40 +01:00
Amine Khaldi
aeea294301
[OLE32] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:15:33 +01:00
Amine Khaldi
d34c33223c
[ODBCCP32] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:14:20 +01:00
Amine Khaldi
04ef5f7a85
[ODBC32] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:13:48 +01:00
Amine Khaldi
9f0f6adfb0
[MSXML3] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:11:02 +01:00
Amine Khaldi
9ab78df104
[MSVIDC32] Sync with Wine Staging 4.0. CORE-15682
2019-01-29 13:10:20 +01:00