- On windows deleted objects have a KernelData value != NULL, so don't check for that when validating a handle, instead check if the type field in the upper 16 bits is 0
svn path=/trunk/; revision=29123
- Add thread information pointer to the user handle entry. This will be useful for checking handles, if the handle is not part of the current thread.
- Add a test to make sure the current process passes the gHandleTable pointer to user32.
- These changes are important for allowing User32 to read-only the handle object information. Not 100% compatible, we need NtUserProcessConnect and CsrClientConnectToServer. Need a full understanding how they both work with User32.
Ref:
- https://www.microsoft.com/msj/0397/hood/hood0397.aspx
- http://www.winterdom.com/dev/ui/wnd.html
svn path=/trunk/; revision=29105
The added '<include base="ntoskrnl" root="intermediate">include</include>' line in "ntoskrnl.rbuild" was left out, as this include path is already added through the "ntoskrnl.h" precompiled header. (thanks to Hervé for figuring this out)
I applied patches 1904 and 1905 of the Bugzilla bug entry.
See issue #2649 for more details.
svn path=/trunk/; revision=29056
Finally, Matrix Screensaver does not work anymore under ReactOS, so we are compatible with Windows XP SP2 and Windows Server 2003 in this case :-D
svn path=/trunk/; revision=28953
- When creating DCE for window handles, allocate a DC structure for the default window DC.
- Return Dhpdev if not zero for NtGdiOpenDCW.
- Reordered the DC object.
svn path=/trunk/; revision=28932
- When creating DCE for window handles, allocate a DC structure for the default window DC.
- Return Dhpdev if not zero for NtGdiOpenDCW.
- Reordered the DC object.
svn path=/trunk/; revision=28918
What the last change does and I missed last commit:
- use individual pool tags for each gdi object type
- allow object allocation w/o lookaside list
- don't search for the lookaside list/cleanup proc, the index into the lists is now calculated from type
svn path=/trunk/; revision=28900
Bug 2628: New intl.cpl italian translation by Gabirel Ilardi ([email protected])
Bug 2626: Modifications for solitaire catalan translation by Marc Tormo i Bochaca ([email protected])
Bug 2625: Catalan translation for msconfig by Marc Tormo i Bochaca ([email protected])
Bug 2612: Spanish translation for explorer_new and updated translation for explorer by Marc Piulachs ([email protected])
Bug 2606: Bulgarian translation of ReactOS. ([email protected])
Bug 2603: userenv es-ES localization by Marc Piulachs ([email protected])
Bug 2534: Few translations ([email protected])
svn path=/trunk/; revision=28832
- We need to decide how to optimize the syncing. CreateD/IC/CompatibleDC, GetDCState and SelectObject use the sync in one form. This can become ugly. Some DC handles do not belong to the current process. We need to reorder the mess in dc.c and clean it up.
- Gdi32: The only ones using it are GetCurrentObject and with out updates Get/SetDCBrush/PenColor.
- Implemented an example of RealizePalette. Moved SetBk/TextColor into dc.c, don't use them.
- Update gdi32.def.
svn path=/trunk/; revision=28797
- loop untill the real stop condition is found
- this makes the console properties menu working again
See issue #1827 for more details.
svn path=/trunk/; revision=28744