wine/eterwine.git
16 years agomsi: Add the Romanian translation.
Michael Stefaniuc [Tue, 24 Mar 2009 10:00:06 +0000 (11:00 +0100)]
msi: Add the Romanian translation.

16 years agoriched20/tests: Fix and extend EM_FORMATRANGE tests.
Paul Vriens [Tue, 24 Mar 2009 09:17:13 +0000 (10:17 +0100)]
riched20/tests: Fix and extend EM_FORMATRANGE tests.

16 years agoshdocvw: Add a stub ITaskbarList implementation.
Henri Verbeet [Tue, 24 Mar 2009 09:09:25 +0000 (10:09 +0100)]
shdocvw: Add a stub ITaskbarList implementation.

Based on a patch by Louis Lenders. Although MSDN claims this should be in
shell32, it really is in shdocvw.

16 years agowined3d: Pass format_desc to set_shader().
Henri Verbeet [Tue, 24 Mar 2009 09:09:24 +0000 (10:09 +0100)]
wined3d: Pass format_desc to set_shader().

This should be the last unnecessary getFormatDescEntry() call.

16 years agowined3d: Pass format_desc to getColorBits() and getDepthStencilBits().
Henri Verbeet [Tue, 24 Mar 2009 09:09:24 +0000 (10:09 +0100)]
wined3d: Pass format_desc to getColorBits() and getDepthStencilBits().

16 years agowined3d: Pass format_desc to the Check*Capability() function.
Henri Verbeet [Tue, 24 Mar 2009 09:09:23 +0000 (10:09 +0100)]
wined3d: Pass format_desc to the Check*Capability() function.

Rather than looking it up all the time.

16 years agowined3d: Remove the bytesPerPixel field from IWineD3DSurfaceImpl and IWineD3DVolumeImpl.
Henri Verbeet [Tue, 24 Mar 2009 09:09:23 +0000 (10:09 +0100)]
wined3d: Remove the bytesPerPixel field from IWineD3DSurfaceImpl and IWineD3DVolumeImpl.

We can use the information from format_desc instead.

16 years agowined3d: Set the byte count for WINED3DFMT_UNKNOWN to 0.
Henri Verbeet [Tue, 24 Mar 2009 09:09:22 +0000 (10:09 +0100)]
wined3d: Set the byte count for WINED3DFMT_UNKNOWN to 0.

As far as I can tell nothing depends on this being 1, and there's some code
that checks for WINED3DFMT_UNKNOWN and uses 0 for the byte count in that case.

16 years agod3d8: Cleanup the vertexshader handling code a bit.
Henri Verbeet [Tue, 24 Mar 2009 09:09:22 +0000 (10:09 +0100)]
d3d8: Cleanup the vertexshader handling code a bit.

16 years agod3d8: Cleanup the pixelshader handling code a bit.
Henri Verbeet [Tue, 24 Mar 2009 09:09:22 +0000 (10:09 +0100)]
d3d8: Cleanup the pixelshader handling code a bit.

This mostly just reduces the nesting to something more sane.

16 years agod3d8: Properly handle unsetting the pixelshader in SetPixelShader().
Henri Verbeet [Tue, 24 Mar 2009 09:09:21 +0000 (10:09 +0100)]
d3d8: Properly handle unsetting the pixelshader in SetPixelShader().

16 years agowined3d: Try to make Coverity shut up (CID 863, 905).
Henri Verbeet [Tue, 24 Mar 2009 09:09:21 +0000 (10:09 +0100)]
wined3d: Try to make Coverity shut up (CID 863, 905).

Comparing gl_shaders against NULL after potentially dereferencing it a few
lines earlier probably confuses Coverity. Checking num_gl_shaders instead
should avoid this.

16 years agocomctl32/listview: Some tests for LVM_GETSUBITEMRECT.
Nikolay Sivov [Mon, 23 Mar 2009 20:12:51 +0000 (16:12 -0400)]
comctl32/listview: Some tests for LVM_GETSUBITEMRECT.

16 years agocomctl32/ipaddress: Store current IP address text as a window text for IP Address...
Nikolay Sivov [Mon, 23 Mar 2009 20:08:02 +0000 (16:08 -0400)]
comctl32/ipaddress: Store current IP address text as a window text for IP Address control.

16 years agocomctl32/trackbar: Fix reverting to default value for TBM_SETPAGESIZE with lParam...
Nikolay Sivov [Mon, 23 Mar 2009 20:05:49 +0000 (16:05 -0400)]
comctl32/trackbar: Fix reverting to default value for TBM_SETPAGESIZE with lParam = -1.

16 years agocomctl32/tab: Implement TCM_[G,S]ETEXTENDEDSTYLE and TCS_EX_FLATSEPARATORS style.
Nikolay Sivov [Mon, 23 Mar 2009 20:00:04 +0000 (16:00 -0400)]
comctl32/tab: Implement TCM_[G,S]ETEXTENDEDSTYLE and TCS_EX_FLATSEPARATORS style.

16 years agocomctl32/tab: Fix button background filling on TCS_BUTTONS.
Nikolay Sivov [Mon, 23 Mar 2009 19:47:16 +0000 (15:47 -0400)]
comctl32/tab: Fix button background filling on TCS_BUTTONS.

16 years agocomctl32/tab: Implement TCM_REMOVEIMAGE.
Nikolay Sivov [Mon, 23 Mar 2009 19:45:44 +0000 (15:45 -0400)]
comctl32/tab: Implement TCM_REMOVEIMAGE.

16 years agowinebuild: Make sure main module is properly initialized.
Alexandre Julliard [Tue, 24 Mar 2009 10:50:13 +0000 (11:50 +0100)]
winebuild: Make sure main module is properly initialized.

16 years agokernel32: Don't try to load an empty initialization file.
James Hawkins [Sun, 22 Mar 2009 21:37:54 +0000 (14:37 -0700)]
kernel32: Don't try to load an empty initialization file.

16 years agokernel32: Handle writing empty sections and keys in WritePrivateProfileString.
James Hawkins [Sun, 22 Mar 2009 21:37:44 +0000 (14:37 -0700)]
kernel32: Handle writing empty sections and keys in WritePrivateProfileString.

16 years agokernel32: Set last error to ERROR_FILE_NOT_FOUND if lpAppName is NULL.
James Hawkins [Sun, 22 Mar 2009 21:37:31 +0000 (14:37 -0700)]
kernel32: Set last error to ERROR_FILE_NOT_FOUND if lpAppName is NULL.

16 years agokernel32: Add tests for WritePrivateProfileString.
James Hawkins [Sun, 22 Mar 2009 21:36:54 +0000 (14:36 -0700)]
kernel32: Add tests for WritePrivateProfileString.

16 years agowineps.drv: Remove order-of-evaluation dependencies.
Andrew Talbot [Thu, 19 Mar 2009 22:40:07 +0000 (22:40 +0000)]
wineps.drv: Remove order-of-evaluation dependencies.

16 years agowinex11.drv: Remove order-of-evaluation dependencies.
Andrew Talbot [Thu, 19 Mar 2009 22:40:14 +0000 (22:40 +0000)]
winex11.drv: Remove order-of-evaluation dependencies.

16 years agoshell32: Remove uninitialized and superfluous struct.
Andrew Talbot [Mon, 23 Mar 2009 22:18:47 +0000 (22:18 +0000)]
shell32: Remove uninitialized and superfluous struct.

16 years agourlmon: Fixed handling NULL URLName in GetDisplatName implementation.
Jacek Caban [Mon, 23 Mar 2009 17:31:05 +0000 (18:31 +0100)]
urlmon: Fixed handling NULL URLName in GetDisplatName implementation.

16 years agourlmon: Added StdURLMoniker implementation.
Jacek Caban [Mon, 23 Mar 2009 17:30:47 +0000 (18:30 +0100)]
urlmon: Added StdURLMoniker implementation.

16 years agourlmon: Return IAsyncMoniker from QueryInterface.
Jacek Caban [Mon, 23 Mar 2009 17:30:32 +0000 (18:30 +0100)]
urlmon: Return IAsyncMoniker from QueryInterface.

16 years agourlmon: Code clean up.
Jacek Caban [Mon, 23 Mar 2009 17:30:11 +0000 (18:30 +0100)]
urlmon: Code clean up.

16 years agoquartz/tests: If CoCreateInstance() fails, it's safe to return, as no cleanup is...
Kai Blin [Mon, 23 Mar 2009 17:14:57 +0000 (18:14 +0100)]
quartz/tests: If CoCreateInstance() fails, it's safe to return, as no cleanup is needed.

16 years agosetupapi: Remove invalid check for < MAX_PATH and don't copy to NULL PathBuffer ...
Ricardo Filipe [Mon, 23 Mar 2009 17:05:59 +0000 (17:05 +0000)]
setupapi: Remove invalid check for < MAX_PATH and don't copy to NULL PathBuffer (Coverity 888).

16 years agorichedit: Properly handle lack of semicolon after font name in rtf.
Dylan Smith [Mon, 23 Mar 2009 17:24:27 +0000 (13:24 -0400)]
richedit: Properly handle lack of semicolon after font name in rtf.

This was partially handled by ungetting the end group token (i.e. '}')
so that it was read again at the proper place.  Unfortunately there is a
read hook that maintains a stackTop variable, which is decremented when
receiving this end group token.  Therefore stackTop would get
decremented twice, and the rich text file would end prematurely.

This is fixed by incrementing the stackTop variable to compensate for it
being decremented twice.

16 years agowinhlp32: Invalidate scrollbar when changing pages.
Dylan Smith [Mon, 23 Mar 2009 14:34:55 +0000 (10:34 -0400)]
winhlp32: Invalidate scrollbar when changing pages.

16 years agow32skrnl: Make w32sys.dll into a stand-alone 16-bit module.
Alexandre Julliard [Tue, 24 Mar 2009 08:42:02 +0000 (09:42 +0100)]
w32skrnl: Make w32sys.dll into a stand-alone 16-bit module.

16 years agow32skrnl: Make win32s16.dll into a stand-alone 16-bit module.
Alexandre Julliard [Tue, 24 Mar 2009 08:38:01 +0000 (09:38 +0100)]
w32skrnl: Make win32s16.dll into a stand-alone 16-bit module.

16 years agowinnls32: Make winnls.dll into a stand-alone 16-bit module.
Alexandre Julliard [Tue, 24 Mar 2009 08:31:03 +0000 (09:31 +0100)]
winnls32: Make winnls.dll into a stand-alone 16-bit module.

16 years agowinmm: Make sound.drv into a stand-alone 16-bit module.
Alexandre Julliard [Mon, 23 Mar 2009 19:35:00 +0000 (20:35 +0100)]
winmm: Make sound.drv into a stand-alone 16-bit module.

16 years agorasapi32: Make rasapi16.dll into a stand-alone 16-bit module.
Alexandre Julliard [Mon, 23 Mar 2009 19:34:34 +0000 (20:34 +0100)]
rasapi32: Make rasapi16.dll into a stand-alone 16-bit module.

16 years agotwain_32: Make twain.dll into a stand-alone 16-bit module.
Alexandre Julliard [Mon, 23 Mar 2009 19:34:02 +0000 (20:34 +0100)]
twain_32: Make twain.dll into a stand-alone 16-bit module.

16 years agownaspi32: Make winaspi.dll into a stand-alone 16-bit module.
Alexandre Julliard [Mon, 23 Mar 2009 19:33:34 +0000 (20:33 +0100)]
wnaspi32: Make winaspi.dll into a stand-alone 16-bit module.

16 years agowintab32: Make wintab.dll into a stand-alone 16-bit module.
Alexandre Julliard [Mon, 23 Mar 2009 19:33:00 +0000 (20:33 +0100)]
wintab32: Make wintab.dll into a stand-alone 16-bit module.

16 years agoimm32: Make imm.dll into a stand-alone 16-bit module.
Alexandre Julliard [Mon, 23 Mar 2009 19:32:06 +0000 (20:32 +0100)]
imm32: Make imm.dll into a stand-alone 16-bit module.

16 years agoctl3d32: Make ctl3d.dll and ctl3dv2.dll into stand-alone 16-bit modules.
Alexandre Julliard [Mon, 23 Mar 2009 19:31:01 +0000 (20:31 +0100)]
ctl3d32: Make ctl3d.dll and ctl3dv2.dll into stand-alone 16-bit modules.

16 years agoddraw/tests: Skip some cooperative level tests on NT4/Win95.
Andrew Nguyen [Mon, 23 Mar 2009 06:42:58 +0000 (01:42 -0500)]
ddraw/tests: Skip some cooperative level tests on NT4/Win95.

The DirectX SDK reports that cooperative level flags
DDSCL_SETDEVICEWINDOW and DDSCL_SETFOCUSWINDOW are only
available on Windows 98 and higher.

16 years agowine.inf: Add entry for fake ddeml.dll.
Andrew Nguyen [Mon, 23 Mar 2009 06:35:00 +0000 (01:35 -0500)]
wine.inf: Add entry for fake ddeml.dll.

16 years agotapi32: Stub lineGetIDW.
Andrew Nguyen [Mon, 23 Mar 2009 06:34:55 +0000 (01:34 -0500)]
tapi32: Stub lineGetIDW.

16 years agotapi32: Stub lineMakeCallW.
Andrew Nguyen [Mon, 23 Mar 2009 06:34:46 +0000 (01:34 -0500)]
tapi32: Stub lineMakeCallW.

16 years agotapi32: Stub lineGetDevCapsW.
Andrew Nguyen [Mon, 23 Mar 2009 06:34:41 +0000 (01:34 -0500)]
tapi32: Stub lineGetDevCapsW.

16 years agowinebuild: Document the correlation of spec->ordinals and spec->limit with an asserti...
James Hawkins [Sun, 22 Mar 2009 21:32:51 +0000 (14:32 -0700)]
winebuild: Document the correlation of spec->ordinals and spec->limit with an assertion (Coverity 902).

16 years agocmd: Fix a memory leak (Coverity 904).
James Hawkins [Sun, 22 Mar 2009 21:32:22 +0000 (14:32 -0700)]
cmd: Fix a memory leak (Coverity 904).

16 years agotwain_32: Fix the use of an uninitialized variable (Coverity 908).
James Hawkins [Sun, 22 Mar 2009 21:31:56 +0000 (14:31 -0700)]
twain_32: Fix the use of an uninitialized variable (Coverity 908).

16 years agoloader: Fix installation for platforms that don't use extra binaries.
Alexandre Julliard [Mon, 23 Mar 2009 14:51:59 +0000 (15:51 +0100)]
loader: Fix installation for platforms that don't use extra binaries.

16 years agoole32: Store the ole clipboard window's HWND in the DataObject clipboard format.
Huw Davies [Mon, 23 Mar 2009 11:47:19 +0000 (11:47 +0000)]
ole32: Store the ole clipboard window's HWND in the DataObject clipboard format.

16 years agoole32: Register DataObject clipboard format.
Huw Davies [Tue, 17 Mar 2009 15:34:31 +0000 (15:34 +0000)]
ole32: Register DataObject clipboard format.

16 years agoole32: Use IsEqualIID rather than memcmp.
Huw Davies [Tue, 17 Mar 2009 14:33:33 +0000 (14:33 +0000)]
ole32: Use IsEqualIID rather than memcmp.

16 years agoole32: Simplify QueryInterface.
Huw Davies [Tue, 17 Mar 2009 14:27:18 +0000 (14:27 +0000)]
ole32: Simplify QueryInterface.

16 years agoole32: pFmt isn't exposed to the client, so simplify its allocation.
Huw Davies [Tue, 17 Mar 2009 14:25:09 +0000 (14:25 +0000)]
ole32: pFmt isn't exposed to the client, so simplify its allocation.

16 years agoole32: Rearrange functions to eliminate forward declarations.
Huw Davies [Tue, 17 Mar 2009 14:17:49 +0000 (14:17 +0000)]
ole32: Rearrange functions to eliminate forward declarations.

16 years agoole32: Add a helper function to retrieve the implementation ptr.
Huw Davies [Tue, 17 Mar 2009 12:44:20 +0000 (12:44 +0000)]
ole32: Add a helper function to retrieve the implementation ptr.

16 years agoole32: Don't allocate the ole clipboard object in global memory - we're not going...
Huw Davies [Tue, 17 Mar 2009 12:20:55 +0000 (12:20 +0000)]
ole32: Don't allocate the ole clipboard object in global memory - we're not going to directly expose it to other processes.

16 years agoole32: Remove unused static variable.
Huw Davies [Tue, 17 Mar 2009 11:55:09 +0000 (11:55 +0000)]
ole32: Remove unused static variable.

16 years agomsi: Handle a NULL and empty szPackagePath in MsiInstallProduct (Coverity 181).
James Hawkins [Sun, 22 Mar 2009 21:31:35 +0000 (14:31 -0700)]
msi: Handle a NULL and empty szPackagePath in MsiInstallProduct (Coverity 181).

16 years agomsi: Don't try to release a NULL record, with tests (Coverity 536).
James Hawkins [Sun, 22 Mar 2009 21:31:24 +0000 (14:31 -0700)]
msi: Don't try to release a NULL record, with tests (Coverity 536).

16 years agomsi: MsiCollectUserInfo cannot be called from a custom action (Coverity 565, 566).
James Hawkins [Sun, 22 Mar 2009 21:31:13 +0000 (14:31 -0700)]
msi: MsiCollectUserInfo cannot be called from a custom action (Coverity 565, 566).

16 years agomsi: Test and handle the case where the SourceList key does not exist and the Package...
James Hawkins [Sun, 22 Mar 2009 21:30:56 +0000 (14:30 -0700)]
msi: Test and handle the case where the SourceList key does not exist and the PackageName value does not exist in MsiGetProductInfo.

16 years agomsi: Factor out the MsiEnumPatchesEx tests and test the NULL szUserSid and an szUserS...
James Hawkins [Sun, 22 Mar 2009 21:30:38 +0000 (14:30 -0700)]
msi: Factor out the MsiEnumPatchesEx tests and test the NULL szUserSid and an szUserSid that is different from the current user.

16 years agomsi: Allow the enumeration of other users' patches.
James Hawkins [Sun, 22 Mar 2009 21:30:16 +0000 (14:30 -0700)]
msi: Allow the enumeration of other users' patches.

16 years agomsi: Enumerate the current user's patches if szUserSid is NULL.
James Hawkins [Sun, 22 Mar 2009 21:30:03 +0000 (14:30 -0700)]
msi: Enumerate the current user's patches if szUserSid is NULL.

16 years agomsi: Fix a typo (Coverity 910).
James Hawkins [Sun, 22 Mar 2009 21:29:51 +0000 (14:29 -0700)]
msi: Fix a typo (Coverity 910).

16 years agomsi: Update the German translation.
Michael Stefaniuc [Fri, 20 Mar 2009 22:45:22 +0000 (23:45 +0100)]
msi: Update the German translation.

16 years agomsi: Convert the German translation to UTF8 encoding.
Michael Stefaniuc [Fri, 20 Mar 2009 22:44:49 +0000 (23:44 +0100)]
msi: Convert the German translation to UTF8 encoding.

16 years agodsound: Fix uninitialized variable.
Robert Reif [Tue, 17 Mar 2009 14:20:05 +0000 (10:20 -0400)]
dsound: Fix uninitialized variable.

I missed one case when converting over to static GUIDs in a previous patch.
Pointed out by Andrew Talbot.

16 years agomsi: Reorder the condition operators so that longer strings are matched first.
Aric Stewart [Mon, 16 Mar 2009 16:05:11 +0000 (11:05 -0500)]
msi: Reorder the condition operators so that longer strings are matched first.

This allows ~<< to be properly matched.

16 years agoshell32: Fix number of returned arguments from CommandLineToArgvW with empty string.
Vitaliy Margolen [Mon, 16 Mar 2009 02:29:48 +0000 (20:29 -0600)]
shell32: Fix number of returned arguments from CommandLineToArgvW with empty string.

16 years agorpcrt4: Fix a memory leak in union unmarshall functions by never passing fMustAlloc...
Rob Shearman [Fri, 20 Mar 2009 16:13:00 +0000 (16:13 +0000)]
rpcrt4: Fix a memory leak in union unmarshall functions by never passing fMustAlloc=TRUE into union_arm_unmarshall.

16 years agorpcrt4: Implement NdrRangeUnmarshall for enum types.
Rob Shearman [Fri, 20 Mar 2009 16:11:58 +0000 (16:11 +0000)]
rpcrt4: Implement NdrRangeUnmarshall for enum types.

16 years agorpcrt4: Simplify some code in RpcServerInqBindings by changing while loops into for...
Rob Shearman [Fri, 20 Mar 2009 16:11:03 +0000 (16:11 +0000)]
rpcrt4: Simplify some code in RpcServerInqBindings by changing while loops into for loops.

16 years agorpcrt4: Free the resources associated with server protocol sequences on DLL unload.
Rob Shearman [Fri, 20 Mar 2009 16:10:42 +0000 (16:10 +0000)]
rpcrt4: Free the resources associated with server protocol sequences on DLL unload.

16 years agowidl: Initialise ref pointers to basic and enum types to 0 in generated server code.
Rob Shearman [Fri, 20 Mar 2009 16:16:25 +0000 (16:16 +0000)]
widl: Initialise ref pointers to basic and enum types to 0 in generated server code.

Previously it was only done for pointers.

16 years agowidl: Output correct code for freeing of conformant-sized and non-conformant strings.
Rob Shearman [Fri, 20 Mar 2009 16:15:46 +0000 (16:15 +0000)]
widl: Output correct code for freeing of conformant-sized and non-conformant strings.

_StubMsg.pfnFree should be used instead of NdrPointerFree for
conformant-sized strings since the buffer will have been allocated
using NdrAllocate.

Non-conformant strings do not need any freeing since they use a buffer
that is allocated on the stack.

16 years agowidl: Check the attributes applied to function declarations.
Rob Shearman [Fri, 20 Mar 2009 16:14:08 +0000 (16:14 +0000)]
widl: Check the attributes applied to function declarations.

16 years agod3d10core: Only destroy the device when it doesn't have any references left.
Henri Verbeet [Mon, 23 Mar 2009 07:30:17 +0000 (08:30 +0100)]
d3d10core: Only destroy the device when it doesn't have any references left.

16 years agod3d8: Fix locking.
Henri Verbeet [Mon, 23 Mar 2009 07:30:16 +0000 (08:30 +0100)]
d3d8: Fix locking.

16 years agod3d8: Get rid of resource.c.
Henri Verbeet [Mon, 23 Mar 2009 07:30:16 +0000 (08:30 +0100)]
d3d8: Get rid of resource.c.

16 years agod3d8: Get rid of basetexture.c.
Henri Verbeet [Mon, 23 Mar 2009 07:30:16 +0000 (08:30 +0100)]
d3d8: Get rid of basetexture.c.

16 years agod3d9: Fix locking.
Henri Verbeet [Mon, 23 Mar 2009 07:30:16 +0000 (08:30 +0100)]
d3d9: Fix locking.

It appears there are some calls to wined3d missing critical sections.

16 years agod3d9: Get rid of resource.c.
Henri Verbeet [Mon, 23 Mar 2009 07:30:16 +0000 (08:30 +0100)]
d3d9: Get rid of resource.c.

16 years agod3d9: Get rid of basetexture.c.
Henri Verbeet [Mon, 23 Mar 2009 07:30:16 +0000 (08:30 +0100)]
d3d9: Get rid of basetexture.c.

16 years agowined3d: Set the currently active context to NULL when it's destroyed.
Henri Verbeet [Mon, 23 Mar 2009 07:30:15 +0000 (08:30 +0100)]
wined3d: Set the currently active context to NULL when it's destroyed.

This should make us crash when trying to use the "currently active" context
after it has been destroyed, rather than messing around with freed memory.

16 years agowined3d: Compare the actual formats.
Henri Verbeet [Mon, 23 Mar 2009 07:30:15 +0000 (08:30 +0100)]
wined3d: Compare the actual formats.

16 years agowined3d: Unload resources on Uninit3D().
Henri Verbeet [Mon, 23 Mar 2009 12:54:34 +0000 (13:54 +0100)]
wined3d: Unload resources on Uninit3D().

This should prevent destroying GL objects without a GL context. Eg. when a ddraw
surface has a GL texture and is released after a call to Uninit3D().

16 years agorichedit: Add bounds checks for EM_GETTEXTRANGE with tests.
Dylan Smith [Mon, 23 Mar 2009 04:14:33 +0000 (00:14 -0400)]
richedit: Add bounds checks for EM_GETTEXTRANGE with tests.

Wine was not doing bounds checks for EM_GETTEXTRANGE, which was causing
a crash in Bug 17822.  The added tests would cause a crash without the
added bounds checks in the richedit code.

The bounds checks I put in HandleMessage, since ME_GetTextRange is also
called for ME_GETSELTEXT which should not have bounds checks, since it
uses the selection range.

When the ME_GETTEXTRANGE message returns 0, no text is copied, not even
the NULL terminating charter.  This differs from EM_GETSELTEXT which
will copy the NULL terminating character when no text is selected.  This
behaviour is consistent with native richedit controls.

16 years agowined3d: Add a classic WGL pixel format backend as not all OpenGL implementations...
Roderick Colenbrander [Sun, 15 Mar 2009 10:30:10 +0000 (11:30 +0100)]
wined3d: Add a classic WGL pixel format backend as not all OpenGL implementations support WGL_ARB_pixel_format.

This should help for instance VirtualBox.

16 years agowined3d: Add WGL_ARB_pixel_format detection.
Roderick Colenbrander [Sun, 15 Mar 2009 09:01:43 +0000 (10:01 +0100)]
wined3d: Add WGL_ARB_pixel_format detection.

Right now we assume that the extension is there but this isn't always
the case. The next patch in this series will add a
non-WGL_ARB_pixel_format codepath to help VirtualBox and others.

16 years agoschannel/tests: Fix test on Win2k.
Nicolas Le Cam [Sat, 14 Mar 2009 13:22:51 +0000 (14:22 +0100)]
schannel/tests: Fix test on Win2k.

16 years agoshell32/tests: Fix a test on Win2k platform and above.
Nicolas Le Cam [Tue, 17 Mar 2009 21:40:45 +0000 (22:40 +0100)]
shell32/tests: Fix a test on Win2k platform and above.

16 years agourlmon/tests: Fix a test failure on Vista and higher.
Paul Vriens [Thu, 19 Mar 2009 10:16:28 +0000 (11:16 +0100)]
urlmon/tests: Fix a test failure on Vista and higher.

16 years agouser32/tests: In sysparams.c disable some Get/Set border tests for now. These may...
Rein Klazes [Thu, 19 Mar 2009 09:45:46 +0000 (10:45 +0100)]
user32/tests: In sysparams.c disable some Get/Set border tests for now. These may permanently change desktop settings of the testers.

16 years agopropsys: Stub for PSUnregisterPropertySchema.
Aric Stewart [Thu, 19 Mar 2009 14:46:45 +0000 (09:46 -0500)]
propsys: Stub for PSUnregisterPropertySchema.

Needed for IE8 install.