Commit graph

61638 commits

Author SHA1 Message Date
Amine Khaldi 0dcee3cc62 [NTOBJSHEX] Fix copypasta.
svn path=/trunk/; revision=67245
2015-04-18 10:09:15 +00:00
Pierre Schweitzer b78384bea9 [NTOBJSHEX]
Add French translation

svn path=/trunk/; revision=67244
2015-04-18 10:02:19 +00:00
Daniel Reimer 03aeb818fe [CPL]
Add manifest to telephon.cpl.
[SHELLEXT]
Add manifest to netshell, stobject and ntobjshex.
Translate ntobjshex to German.

svn path=/trunk/; revision=67243
2015-04-18 09:57:21 +00:00
Amine Khaldi 4016681e08 [THEMEUI] Add this module for .msstyle file type association. By Lee Schroeder. CORE-5984
svn path=/trunk/; revision=67242
2015-04-18 09:52:23 +00:00
Pierre Schweitzer 20acb71cf4 [IEFRAME]
Add French translation

svn path=/trunk/; revision=67241
2015-04-18 09:50:23 +00:00
Daniel Reimer 6bb797cec3 Fixing some incorrectly written Reactos/ReactOs -> ReactOS by Raked Liska
CORE-9536 #comment Even less of these now.

svn path=/trunk/; revision=67240
2015-04-18 09:21:51 +00:00
Daniel Reimer e675ab0cb6 Fixing some incorrectly written Reactos -> ReactOS
CORE-7524 #comment Some less of these now.

svn path=/trunk/; revision=67239
2015-04-18 09:01:23 +00:00
Aleksandar Andrejevic 6381155e6c [NTVDM]
Fix the range check in VgaReadMemory and VgaWriteMemory.


svn path=/trunk/; revision=67238
2015-04-18 04:21:28 +00:00
Hermès Bélusca-Maïto bfd1c2a6b9 [NTVDM]: Minor code reorganization. StartTickCount is commented out because it's unused at the moment, but it can be useful later on...
svn path=/trunk/; revision=67237
2015-04-18 01:39:29 +00:00
Aleksandar Andrejevic 7087659a28 [NTVDM]
The "WORKING_TIMER" disabled code is so obsolete that it doesn't even compile anymore.


svn path=/trunk/; revision=67236
2015-04-18 00:57:50 +00:00
Hermès Bélusca-Maïto b673932d12 [NTVDM]: Partial revert to r67234: delays were in fact better than frequencies, in case one would like to define sub-frequency timers. Instead, always specify delays in nanoseconds, and add a macro to convert from frequency in hertz to duration in nanoseconds.
svn path=/trunk/; revision=67235
2015-04-18 00:29:14 +00:00
Hermès Bélusca-Maïto 6dc704ff48 [NTVDM]: For CreateHardwareTimer, use frequencies (in hertz) instead of using milliseconds or nanoseconds (depending on some additional flag to be specified). It's therefore easier to specify what you want.
svn path=/trunk/; revision=67234
2015-04-17 23:58:01 +00:00
Aleksandar Andrejevic e9b43f93b7 [NTVDM]
The DOS_MCB structure needs to be byte-aligned.


svn path=/trunk/; revision=67233
2015-04-17 21:59:41 +00:00
Thomas Faber a80d5b8e9d [WINMM]
- Sync MCI_SysInfo with Wine.
CORE-8528 #resolve

svn path=/trunk/; revision=67232
2015-04-17 19:20:32 +00:00
Aleksandar Andrejevic 2dc91ac6c0 [NTVDM]
- The auxiliary PS/2 port IRQ is disabled by default.
- In the DOS mouse driver's IRQ handler, just reading the entire packet
is faster than waiting for one IRQ per byte. (real drivers can do that too,
using polling, which is slower on real hardware but faster in NTVDM).
- Increase the speed of the PS/2 IRQ scheduler so that mouse packets don't
fill up the queue completely. And consequently, increase the number of
CPU steps per cycle to avoid "stuck key" bugs.


svn path=/trunk/; revision=67231
2015-04-17 18:36:45 +00:00
Thomas Faber 22d1251dbc [LIBUSB]
- Make some compilers and static analyzers happy by removing a no-op condition. Patch by Samuel Serapion.
CORE-7214 #resolve

svn path=/trunk/; revision=67230
2015-04-17 18:27:16 +00:00
Thomas Faber 211986401c [NTOS:MM]
- Fix free condition in MiDereferenceImports. Based on a patch by Samuel Serapion.
CORE-7208 #resolve

svn path=/trunk/; revision=67229
2015-04-17 18:21:12 +00:00
Thomas Faber 87424486ea [WIN32K:NTUSER]
- Fix range check in NtUserSetWindowFNID. Patch by Samuel Serapion.
- Update comment on an old hack
CORE-7212 #resolve

svn path=/trunk/; revision=67228
2015-04-17 18:06:39 +00:00
Thomas Faber d9c9bf096c [WIN32SS]
- Fix some scrollbar bugs as indicated by user32_apitest:SetScrollInfo
- Silence a trace
CORE-9553 #resolve

svn path=/trunk/; revision=67227
2015-04-17 18:02:09 +00:00
Thomas Faber 2829ed5afe [USER32_APITEST]
- Add a test for SetScrollInfo
CORE-9553

svn path=/trunk/; revision=67226
2015-04-17 17:22:07 +00:00
Christoph von Wittich 75e50ba8cd [RAPPS]
initialize CachedEntriesHead
CORE-9060

svn path=/trunk/; revision=67225
2015-04-17 13:06:33 +00:00
Christoph von Wittich 4745785f04 [RAPPS]
free cached entries and some other improvements
patch by Ismael Ferreras Morezuelas aka swyter
CORE-9060

svn path=/trunk/; revision=67224
2015-04-17 12:37:08 +00:00
Hermès Bélusca-Maïto 1e7977088b [NTVDM]: Fix VgaGetDoubleVisionState definition (it was already correctly used in hardware/mouse.c).
svn path=/trunk/; revision=67223
2015-04-17 12:13:49 +00:00
Thomas Faber e69c4796da [KERNEL32_APITEST]
- Make GetDriveType test succeed if the current directory is the drive root. Spotted by Edijs.
- Use strsafe functions
ROSTESTS-160 #resolve

svn path=/trunk/; revision=67222
2015-04-17 08:09:30 +00:00
Thomas Faber a239c99e56 [WIN32K:NTUSER]
- Correctly check for WS_EX_NOPARENTNOTIFY in IntSendParentNotify. Patch by Andreas Maier.
CORE-9538 #resolve

svn path=/trunk/; revision=67221
2015-04-17 07:03:37 +00:00
Aleksandar Andrejevic a64a682051 [NTVDM]
Fix several mouse range-related issues.


svn path=/trunk/; revision=67220
2015-04-17 03:11:18 +00:00
Aleksandar Andrejevic e4a1abcc2a [NTVDM]
- Completely rewrite the timing system. Replace hardcoded callbacks
with dynamic hardware timers.
- Finish implementing the PS/2 mouse.
- Fix the DOS mouse driver.
Inspired by a patch by Stefano Toncich (Tonix) (see CORE-9166).
CORE-9166 #comment A different fix was committed in r67219.


svn path=/trunk/; revision=67219
2015-04-17 00:20:39 +00:00
Hermès Bélusca-Maïto 33d8a4b74b [CONSRV]: Addendum to r63792: use a separate flag to filter the next-mouse-move event that MUST NOT appear before a button-up event (this appears to be somewhat VM-dependent). See code and CORE-8394 for more details.
svn path=/trunk/; revision=67218
2015-04-17 00:01:37 +00:00
Hermès Bélusca-Maïto e00d2e49be [CONSRV]: GUI frontend: support the 3rd and 4th mouse button.
svn path=/trunk/; revision=67217
2015-04-16 23:08:19 +00:00
Amine Khaldi 3c22869668 [RPCRT4_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67216
2015-04-16 17:21:14 +00:00
Amine Khaldi c4cc047656 [IEFRAME] Make ieframe translatable. Thanks to Jared Smudde, Radek Liska and all the other translators mentioned in CORE-9544
svn path=/trunk/; revision=67215
2015-04-16 17:18:48 +00:00
Amine Khaldi 28559e040b [WER] Zap this module. I don't see it in my XP and 2K3 systems. It wasn't even part of the build process. CORE-9246
svn path=/trunk/; revision=67214
2015-04-16 15:05:34 +00:00
Thomas Faber f499a92d44 [USER32_APITEST]
- Add a test for CreateDialog. Patch by Andreas Maier.
ROSTESTS-163 #resolve

svn path=/trunk/; revision=67213
2015-04-16 11:35:23 +00:00
Amine Khaldi 0f61b39797 [GDIPLUS_WINETEST] Addendum to r58377. gdiplus:image doesn't crash anymore. CORE-6969
svn path=/trunk/; revision=67212
2015-04-16 10:53:37 +00:00
Hermès Bélusca-Maïto 5e36ff31c0 [CD_EXTRAS]: Add the possibility to have different "extras" files for the different CD targets (in addition to the hybridcd) we have (useful for testers, for ReactOS shows, etc...). By Mark Jansen.
CORE-9527 #resolve #comment Added, thanks!

svn path=/trunk/; revision=67211
2015-04-15 21:29:53 +00:00
Eric Kohl 60e0daa326 [SRVSVC]
Implement NetrRemoteTOD.
CORE-5423 #resolve #comment Committed in r67210.

svn path=/trunk/; revision=67210
2015-04-15 21:04:43 +00:00
Amine Khaldi 4e16ae29eb [XMLLITE_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67209
2015-04-15 18:12:48 +00:00
Amine Khaldi 27f42e4074 [QMGR_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67208
2015-04-15 18:12:24 +00:00
Amine Khaldi c728b137a9 [PROPSYS_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67207
2015-04-15 18:10:59 +00:00
Amine Khaldi 05895bfce5 [PROPSYS] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67206
2015-04-15 18:10:40 +00:00
Amine Khaldi b2c305e446 [OLEAUT32_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67205
2015-04-15 18:10:02 +00:00
Amine Khaldi e8f37aa2ae [ODBCCP32_WINETEST] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67204
2015-04-15 18:09:34 +00:00
Amine Khaldi e4b0e7aa74 [OLEAUT32] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67203
2015-04-15 18:09:13 +00:00
Amine Khaldi 7b4184bd06 [OLEACC] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67202
2015-04-15 18:07:26 +00:00
Amine Khaldi 15d91d11e5 [ODBCCP32] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67201
2015-04-15 18:06:22 +00:00
Amine Khaldi a2f1af1a1d [ODBC32] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67200
2015-04-15 18:05:07 +00:00
Amine Khaldi 8046f009ba [NTDSAPI] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67199
2015-04-15 18:04:15 +00:00
Amine Khaldi 8a34b7d620 [XMLLITE] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=67198
2015-04-15 18:03:03 +00:00
Eric Kohl 0749fc145c [NETAPI32]
- Add the client interface code of the server service.
- Implement NetRemoteTOD. This will not fix CORE-5423 because the server side (NetrRemoteTOD) is not implemented yet.

svn path=/trunk/; revision=67197
2015-04-14 21:47:06 +00:00
Eric Kohl fdc0506420 [SRVSVC]
Add the Server service and its interface definition files.



svn path=/trunk/; revision=67196
2015-04-14 20:59:34 +00:00