Commit graph

61638 commits

Author SHA1 Message Date
Timo Kreuzer 2ff3ef05ad [CRT]
Refactor the code for __rt_div to allow reusing it for __rt_sdiv64 and __rt_udiv64 and implement those as asm wrappers around worker functions (due to the calling convention they cannot be implemented fully in C)

svn path=/trunk/; revision=67195
2015-04-14 18:42:28 +00:00
Amine Khaldi 7c438cfca5 [SYSDM] Move the link to the ReactOS homepage over a bit and capitalize some words in the Virtual Memory tab for the English language. By Jared Smudde. CORE-9541
svn path=/trunk/; revision=67194
2015-04-14 17:44:10 +00:00
Amine Khaldi 97c51296c8 [TREE] Fix a character typo. By Lee Schroeder. CORE-9543
svn path=/trunk/; revision=67193
2015-04-14 17:38:42 +00:00
Christoph von Wittich f607ec2767 [TASKMGR]
fix a resource leak

svn path=/trunk/; revision=67192
2015-04-14 08:05:46 +00:00
Christoph von Wittich 20ab1d5d0d [CHARMAP]
use RegCreateKeyEx instead of RegCreateKey/RegOpenKeyEx

svn path=/trunk/; revision=67191
2015-04-14 08:04:18 +00:00
Christoph von Wittich 05304a280f [CHARMAP]
fix a resource leak

svn path=/trunk/; revision=67190
2015-04-14 07:47:43 +00:00
Christoph von Wittich ad5812c3fd [DXDIAG]
fix some memory leaks

svn path=/trunk/; revision=67189
2015-04-14 07:41:24 +00:00
Christoph von Wittich 58e6b2e08a [sndvol32]
fix some memory leaks

svn path=/trunk/; revision=67188
2015-04-14 07:30:26 +00:00
Christoph von Wittich 123774cc8c [FONTVIEW]
fix a leak

svn path=/trunk/; revision=67187
2015-04-13 13:44:02 +00:00
Aleksandar Andrejevic 5c1e6cd9ac [NTVDM]
Initialize the list of hooks before the call to NtAllocateVirtualMemory, to prevent crashes
in MemCleanup in case it fails.


svn path=/trunk/; revision=67186
2015-04-13 12:50:34 +00:00
Christoph von Wittich 979022ff03 [CALC]
only update the layout when necessary

svn path=/trunk/; revision=67185
2015-04-13 09:53:35 +00:00
Christoph von Wittich a24604be32 [RAPPS]
disable the call to FreeAvailableAppList until caching is fixes

svn path=/trunk/; revision=67184
2015-04-13 09:16:23 +00:00
Christoph von Wittich f7cc513f2a [RAPPS]
fix a big memory leak

svn path=/trunk/; revision=67183
2015-04-13 08:10:54 +00:00
Eric Kohl 90529d6033 [NETAPI32]
Disable some functions in wksta_new.c and re-enable their counterparts in wksta.c. For some reason I cannot get the wine dummy code working in the workstation service. Perhaps it is yet another RPC bug.

CORE-9415

svn path=/trunk/; revision=67182
2015-04-12 22:07:22 +00:00
David Quintana 5dee29daa3 [NTOBJSHEX]
* Fix comparison length: StrCmpNW takes chars, not bytes.
* While at it, make canonical comparisons use memcmp instead of string comparison, as we only care about equality, not ordering.
Better fix for CORE-9432

svn path=/trunk/; revision=67181
2015-04-12 19:00:26 +00:00
Pierre Schweitzer 6abe431f5a [MYCOMPUT]
Add French translation

svn path=/trunk/; revision=67180
2015-04-12 18:22:26 +00:00
Timo Kreuzer 0e17cbc7b8 [CRT]
Implement __rt_sdiv as a wrapper around the unsigned divide (now factored out into an inline worker function)

svn path=/trunk/; revision=67179
2015-04-12 18:07:19 +00:00
Timo Kreuzer 59f40e274f [CRT]
Implement __rt_udiv in C.

svn path=/trunk/; revision=67178
2015-04-12 17:08:11 +00:00
Christoph von Wittich fe19391da7 [SNDREC32]
do not delete objects which are still selected into a DC

svn path=/trunk/; revision=67177
2015-04-12 16:29:36 +00:00
Christoph von Wittich d0ab5ca8f8 [TASKMGR]
fix some more memory leaks
CORE-9473

svn path=/trunk/; revision=67176
2015-04-12 16:09:26 +00:00
Christoph von Wittich 24af2268eb [TASKMGR]
fix some memory leaks

svn path=/trunk/; revision=67175
2015-04-12 15:45:40 +00:00
Timo Kreuzer 6c366758de [KMTEST]
Remove now obsolete definitions

svn path=/trunk/; revision=67174
2015-04-12 12:42:50 +00:00
Timo Kreuzer 44ea2025e2 [INCLUDE]
Fix the Interlocked function mess. Implement all Interlocked functions in xdk/interlocked.h as they exist in native. Use this header to generate wdm.h and winnt.h. Remove Interlocked definitions from winbase.h. Fix definition of ExInterlockedAddLargeInteger.

svn path=/trunk/; revision=67173
2015-04-12 12:40:49 +00:00
Amine Khaldi 744730996d [WINE/TEST] Add the possibility of making file names clickable in visual studio output windows by defining WINETEST_MSVC_IDE_FORMATTING. By Mark Jansen. ROSTESTS-156
svn path=/trunk/; revision=67172
2015-04-12 12:26:46 +00:00
Timo Kreuzer c45766ee82 [REACTOS]
Fix usage of interlocked[Compare]ExchangePointer. These functions take a PVOID* as first parameter and nothing else. In native headers they are inline functions, not macros.

svn path=/trunk/; revision=67171
2015-04-12 12:24:01 +00:00
Daniel Reimer 38e1d11c51 [RAPPS]
My sync script was not completely up to date... forgot these newly added ones in there.

svn path=/trunk/; revision=67170
2015-04-12 11:54:59 +00:00
Daniel Reimer d73b29f78b [RAPPS]
Update Database
CORE-9348 #resolve #comment Database updated, have fun ^^

svn path=/trunk/; revision=67169
2015-04-12 11:34:00 +00:00
Timo Kreuzer 217f3f66f1 [INCLUDE]
- Add missing KeMemoryBarrierWithoutFence, NUMBER_POOL_LOOKASIDE_LISTS, MM_SHARED_USER_DATA_VA, MM_EMPTY_PTE_LIST, MM_EMPTY_LIST, P*E_PER_PAGE, SESSION_POOL_LOOKASIDES, MiPdeToPte for ARM
- Fix KI_USER_SHARED_DATA for ARM based on native DDK

svn path=/trunk/; revision=67168
2015-04-12 09:48:00 +00:00
Pierre Schweitzer aec53ac1d0 [MYCOMPUT]
Add Italian translation.
Patch by Carlo Bramini

CORE-9524 #resolve #comment Commited in r67167. Thanks!

svn path=/trunk/; revision=67167
2015-04-12 09:17:53 +00:00
David Quintana 0e0c90edbb [NTOBJSHEX]
* Make the info struct pointers const, to ensure we are not modifying the contents from the const idlists.
* Disable checking that the provided PIDL is part of the folder. Fixes enumeration in ros, but feels a lot like hiding a bug.
CORE-9432 #resolve

svn path=/trunk/; revision=67166
2015-04-12 01:34:53 +00:00
Daniel Reimer 36d7fc27d1 [RAPPS]
Add more recent Setup for Steam (2 years more recent) + localisations for the setup by Radek Liska
CORE-4196 #resolve #comment Added to RAPPS, have fun ^^

svn path=/trunk/; revision=67165
2015-04-11 14:03:58 +00:00
Timo Kreuzer 2530602c53 [FREELDR]
Fix ARM build

svn path=/trunk/; revision=67164
2015-04-11 14:03:19 +00:00
Hermès Bélusca-Maïto d3b9acd3f5 [CONSRV]: Fix MSVC warnings.
svn path=/trunk/; revision=67163
2015-04-11 13:49:32 +00:00
Timo Kreuzer 89f99d7458 {RTL/ASM]
Fix ARM build

svn path=/trunk/; revision=67162
2015-04-11 12:47:29 +00:00
Timo Kreuzer 29552a8cd5 [CRT]
Add asm stubs for some ARM math functions

svn path=/trunk/; revision=67161
2015-04-11 12:44:55 +00:00
Timo Kreuzer 9db44f101d [INCLUDE]
- Add missing MI_HIGHEST_USER_ADDRESS for ARM
- Fix definition of ARM CONTEXT structure

svn path=/trunk/; revision=67160
2015-04-11 12:24:34 +00:00
Amine Khaldi 4f80779e54 [USETUP] Turkish translation update by Erdem Ersoy. CORE-7861
svn path=/trunk/; revision=67159
2015-04-11 12:02:31 +00:00
Amine Khaldi e1cacb63f3 [TRANSLATIONS] Turkish translation update by Erdem Ersoy. CORE-7861
svn path=/trunk/; revision=67158
2015-04-11 12:00:56 +00:00
Daniel Reimer 54af000f02 [RAPPS]
Add PDFSAM (split and merge) to rapps
CORE-9517 #resolve #comment Added, have fun ^^

svn path=/trunk/; revision=67157
2015-04-11 11:51:38 +00:00
Daniel Reimer a0023f9833 [TASKMGR]
TRANSLATION: Ukrainian translation update for taskmgr by Yaroslav Fedoryako
CORE-9461 #resolve #comment Committed, thx for help.

svn path=/trunk/; revision=67156
2015-04-11 11:38:01 +00:00
Daniel Reimer 007d81c134 [SOL]
Untranslated regions
CORE-8324 #resolve #comment Committed, thx for help.

svn path=/trunk/; revision=67155
2015-04-11 11:35:42 +00:00
Daniel Reimer 9abcc053ca [RAPPS]
Updating Turkish Translations (rapps) by Erdem Ersoy
CORE-8874 #resolve #comment Committed, thx for help.

svn path=/trunk/; revision=67154
2015-04-11 11:25:24 +00:00
Amine Khaldi f1e890b642 [LIBPNG] Update to v1.6.17. CORE-8478
svn path=/trunk/; revision=67153
2015-04-11 11:24:17 +00:00
Daniel Reimer af24ef419f [SNDREC32]
New Button (Tango Icon) in Sound Recorder by Henry Tang Ih
CORE-8932 #resolve #comment Committed, thx for help.

svn path=/trunk/; revision=67152
2015-04-11 11:16:33 +00:00
Amine Khaldi b76bb28fb5 [KBDCZ] Fix compiling when the default code page is a MBCS. By Yuntian Zhang. CORE-7416
svn path=/trunk/; revision=67151
2015-04-11 10:40:07 +00:00
Amine Khaldi 9dcda7a0a1 [CMAKE/MSVC] x64 compilation is always treated as if /hotpatch has been specified. CORE-7959
svn path=/trunk/; revision=67150
2015-04-11 09:34:40 +00:00
Timo Kreuzer d4a96aae26 [PSDK/XDK/CRT]
- Fix ARM build of libwine. Patch by Yuntian Zhang. CORE-8672 #resolve
- Don't include non-existant ARM intrinsic headers

svn path=/trunk/; revision=67149
2015-04-11 08:28:20 +00:00
Timo Kreuzer 1d742c54fb [DESK]
Fix MSVC/x64 warnings

svn path=/trunk/; revision=67148
2015-04-11 08:17:03 +00:00
Christoph von Wittich 5956c4372a [MSPAINT]
enable the call to HtmlHelp (not working yet because of missing help file)
CORE-8738
 

svn path=/trunk/; revision=67147
2015-04-11 06:21:09 +00:00
Timo Kreuzer 7410f3a036 [FAST486]
Fix MSVC warnings

svn path=/trunk/; revision=67146
2015-04-10 22:36:13 +00:00