wine
14 years agoserver: Add support for opening files from a specified root directory.
Alexandre Julliard [Tue, 1 Dec 2009 16:38:24 +0000 (17:38 +0100)] 
server: Add support for opening files from a specified root directory.

14 years agontdll: Add support for converting file names to Unix when a root directory is specified.
Alexandre Julliard [Tue, 1 Dec 2009 16:07:55 +0000 (17:07 +0100)] 
ntdll: Add support for converting file names to Unix when a root directory is specified.

14 years agontdll: Move the directory lookup part of wine_nt_to_unix_file_name to a separate...
Alexandre Julliard [Tue, 1 Dec 2009 15:30:52 +0000 (16:30 +0100)] 
ntdll: Move the directory lookup part of wine_nt_to_unix_file_name to a separate helper.

14 years agojscript: Pass NULL as retv to exec_source in exec_global_code.
Jacek Caban [Tue, 1 Dec 2009 13:52:43 +0000 (14:52 +0100)] 
jscript: Pass NULL as retv to exec_source in exec_global_code.

14 years agoimagehlp/tests: Add tests of Image[Add|Get|Remove]Certificate functions.
Owen Rudge [Mon, 30 Nov 2009 21:14:30 +0000 (21:14 +0000)] 
imagehlp/tests: Add tests of Image[Add|Get|Remove]Certificate functions.

14 years agomciavi: Simplify play loop.
Jörg Höhle [Sun, 22 Nov 2009 14:38:26 +0000 (15:38 +0100)] 
mciavi: Simplify play loop.

14 years agoole32: Fix test failure on win2000+.
Rob Shearman [Tue, 1 Dec 2009 13:14:33 +0000 (13:14 +0000)] 
ole32: Fix test failure on win2000+.

These OSs have different behaviour w.r.t. quotes in path names and
don't ignore the rest of the path outside of the quotes.

14 years agowinex11.drv: Make sure that the selectionAcquired flag has been set before returning...
Rob Shearman [Tue, 1 Dec 2009 13:16:20 +0000 (13:16 +0000)] 
winex11.drv: Make sure that the selectionAcquired flag has been set before returning from X11DRV_AcquireClipboard.

X11DRV_CLIPBOARD_UpdateCache depends on selectionAcquired being set if
the current process is the selection owner, otherwise it will defer to
getting the clipformats from X, manufacturing extra formats that the
app may not be expecting, having just set the formats itself. Worse
still, since selectionAcquired is set in another thread this behaviour
is not predicatable and it may sometimes use the clipformats already
set and other times defer to X.

14 years agows2_32: Initialise buffer eventually passed into send to zero in test_write_events.
Rob Shearman [Tue, 1 Dec 2009 13:14:06 +0000 (13:14 +0000)] 
ws2_32: Initialise buffer eventually passed into send to zero in test_write_events.

14 years agooleaut32: Remove LPVOID variables in olefont tests and pass IFont pointers into OleCr...
Rob Shearman [Tue, 1 Dec 2009 13:13:40 +0000 (13:13 +0000)] 
oleaut32: Remove LPVOID variables in olefont tests and pass IFont pointers into OleCreateFontIndirect directly.

In many places the assignment of the LPVOID variable into the
corresponding IFont * variable has been forgotten.

14 years agontdll: Silence a common warning.
Maarten Lankhorst [Mon, 30 Nov 2009 17:18:58 +0000 (18:18 +0100)] 
ntdll: Silence a common warning.

14 years agogdi32: Avoid calling get_dc_ptr on a null handle.
Alexandre Julliard [Tue, 1 Dec 2009 13:38:21 +0000 (14:38 +0100)] 
gdi32: Avoid calling get_dc_ptr on a null handle.

14 years agocomctl32: Test the WM_GETTEXT processing of datetime control.
Ilya Shpigor [Mon, 30 Nov 2009 12:24:27 +0000 (15:24 +0300)] 
comctl32: Test the WM_GETTEXT processing of datetime control.

14 years agoserver: Make sure that last error doesn't get set during thread cleanup.
Alexandre Julliard [Tue, 1 Dec 2009 14:10:23 +0000 (15:10 +0100)] 
server: Make sure that last error doesn't get set during thread cleanup.

14 years agoserver: Don't set last error in close_handle(), return the error code instead.
Alexandre Julliard [Tue, 1 Dec 2009 12:59:41 +0000 (13:59 +0100)] 
server: Don't set last error in close_handle(), return the error code instead.

14 years agoserver: Don't set last error in get_handle(), move that into the callers.
Alexandre Julliard [Tue, 1 Dec 2009 12:49:43 +0000 (13:49 +0100)] 
server: Don't set last error in get_handle(), move that into the callers.

14 years agoshell32/tests: Fix ITEMIDLIST_format test when running on FAT filesystems.
Austin Lund [Fri, 20 Nov 2009 23:02:32 +0000 (09:02 +1000)] 
shell32/tests: Fix ITEMIDLIST_format test when running on FAT filesystems.

14 years agoadvapi32: Improve the stub for GetEffectiveRightsFromAclA.
Hans Leidekker [Tue, 1 Dec 2009 10:35:50 +0000 (11:35 +0100)] 
advapi32: Improve the stub for GetEffectiveRightsFromAclA.

14 years agowininet/tests: Trace extended errors in a couple of places.
Hans Leidekker [Tue, 1 Dec 2009 10:35:11 +0000 (11:35 +0100)] 
wininet/tests: Trace extended errors in a couple of places.

14 years agomsi/tests: Don't check more bytes than written to the file.
Hans Leidekker [Tue, 1 Dec 2009 10:34:07 +0000 (11:34 +0100)] 
msi/tests: Don't check more bytes than written to the file.

14 years agod3d9/tests: Trace the viewport in clear_test().
Henri Verbeet [Tue, 1 Dec 2009 10:27:48 +0000 (11:27 +0100)] 
d3d9/tests: Trace the viewport in clear_test().

There are some failures in this test on Win7 that appear to be related to the
initial viewport. Perhaps this trace will help narrow it down.

14 years agod3d8: Return D3DERR_INVALIDCALL when trying to delete an invalid pixel shader.
Henri Verbeet [Tue, 1 Dec 2009 10:27:47 +0000 (11:27 +0100)] 
d3d8: Return D3DERR_INVALIDCALL when trying to delete an invalid pixel shader.

It appears this is fixed on Vista/Win7 to be consistent with
DeleteVertexShader(). Match the more consistent behaviour of Vista/Win7 and
mark the previous behaviour as broken.

14 years agontdll/tests: Add some tests for FileAllInformation name information.
Henri Verbeet [Tue, 1 Dec 2009 10:27:46 +0000 (11:27 +0100)] 
ntdll/tests: Add some tests for FileAllInformation name information.

This is essentially a copy of test_file_name_information().

14 years agontdll: Also return name information for FileAllInformation.
Henri Verbeet [Tue, 1 Dec 2009 10:27:45 +0000 (11:27 +0100)] 
ntdll: Also return name information for FileAllInformation.

14 years agontdll: Fix the FileAllInformation info size.
Henri Verbeet [Tue, 1 Dec 2009 10:27:44 +0000 (11:27 +0100)] 
ntdll: Fix the FileAllInformation info size.

14 years agodbghelp: Check wImageName for NULL (Coverity).
Marcus Meissner [Tue, 1 Dec 2009 09:48:56 +0000 (10:48 +0100)] 
dbghelp: Check wImageName for NULL (Coverity).

14 years agocryptnet: Added a potentially missing NULL ptr check (Coverity).
Marcus Meissner [Tue, 1 Dec 2009 09:26:48 +0000 (10:26 +0100)] 
cryptnet: Added a potentially missing NULL ptr check (Coverity).

14 years agocomctl32/treeview: Simplify WM_CHAR handler.
Nikolay Sivov [Mon, 30 Nov 2009 19:18:59 +0000 (22:18 +0300)] 
comctl32/treeview: Simplify WM_CHAR handler.

14 years agocomctl32/treeview: Clean up winproc a bit, move parameter check to handlers.
Nikolay Sivov [Mon, 30 Nov 2009 19:03:34 +0000 (22:03 +0300)] 
comctl32/treeview: Clean up winproc a bit, move parameter check to handlers.

14 years agowinspool: Add a test which shows the flaws in the current all enumeration.
Jeremy White [Mon, 30 Nov 2009 23:05:23 +0000 (17:05 -0600)] 
winspool: Add a test which shows the flaws in the current all enumeration.

14 years agowinspool: Implement GetPrinterDriverA with GetPrinterDriverW, notably using the large...
Jeremy White [Mon, 30 Nov 2009 23:05:15 +0000 (17:05 -0600)] 
winspool: Implement GetPrinterDriverA with GetPrinterDriverW, notably using the larger sizes, which fixes a bug in printing with Acrobat Reader 9.2.

14 years agowinspool: Add a test to show size required for EnumPrinterDriversA is the same as W.
Jeremy White [Mon, 30 Nov 2009 23:05:01 +0000 (17:05 -0600)] 
winspool: Add a test to show size required for EnumPrinterDriversA is the same as W.

14 years agowinspool: When retrieving PRINTER_INFO_7, the lack of a directory service print queue...
Jeremy White [Mon, 30 Nov 2009 23:04:50 +0000 (17:04 -0600)] 
winspool: When retrieving PRINTER_INFO_7, the lack of a directory service print queue object is represented with a NULL pointer and a successful return, not an error return.

14 years agowinspool: Implement GetPrinterA via GetPrinterW, largely to support the eccentricity...
Jeremy White [Mon, 30 Nov 2009 23:04:35 +0000 (17:04 -0600)] 
winspool: Implement GetPrinterA via GetPrinterW, largely to support the eccentricity that GetPrinterA allocates buffers as large as those required by GetPrinterW.

14 years agowinspool: Add modest tests for GetPrinter.
Jeremy White [Mon, 30 Nov 2009 23:04:19 +0000 (17:04 -0600)] 
winspool: Add modest tests for GetPrinter.

14 years agowinspool: Remove unvarying unicode parameter from WINSPOOL_EnumPrinters.
Jeremy White [Mon, 30 Nov 2009 23:04:09 +0000 (17:04 -0600)] 
winspool: Remove unvarying unicode parameter from WINSPOOL_EnumPrinters.

14 years agowinspool: Remove unvarying unicode parameter from WINSPOOL_OpenDriverReg.
Jeremy White [Mon, 30 Nov 2009 23:03:58 +0000 (17:03 -0600)] 
winspool: Remove unvarying unicode parameter from WINSPOOL_OpenDriverReg.

14 years agocomctl32: Use FAILED instead of !SUCCEEDED.
Michael Stefaniuc [Mon, 30 Nov 2009 22:45:16 +0000 (23:45 +0100)] 
comctl32: Use FAILED instead of !SUCCEEDED.

14 years agojscript: Added lastIndex tests.
Jacek Caban [Mon, 30 Nov 2009 20:12:29 +0000 (21:12 +0100)] 
jscript: Added lastIndex tests.

14 years agojscript: Added lastIndex setter implementation.
Jacek Caban [Mon, 30 Nov 2009 20:12:13 +0000 (21:12 +0100)] 
jscript: Added lastIndex setter implementation.

14 years agowininet: Make HTTP_HttpSendRequestW static and avoid its forward declaration.
Jacek Caban [Mon, 30 Nov 2009 19:01:17 +0000 (20:01 +0100)] 
wininet: Make HTTP_HttpSendRequestW static and avoid its forward declaration.

14 years agowininet: Directly return error status from HTTP_HttpAddRequestHeadersW.
Jacek Caban [Mon, 30 Nov 2009 19:01:00 +0000 (20:01 +0100)] 
wininet: Directly return error status from HTTP_HttpAddRequestHeadersW.

14 years agowininet: Directly return error status from HTTP_HttpOpenRequestW.
Jacek Caban [Mon, 30 Nov 2009 19:00:44 +0000 (20:00 +0100)] 
wininet: Directly return error status from HTTP_HttpOpenRequestW.

14 years agowininet: Make HTTP_HttpOpenRequestW static and avoid forward its declaration.
Jacek Caban [Mon, 30 Nov 2009 19:00:28 +0000 (20:00 +0100)] 
wininet: Make HTTP_HttpOpenRequestW static and avoid forward its declaration.

14 years agowininet: Directly return error status from NETCON_init.
Jacek Caban [Mon, 30 Nov 2009 19:00:11 +0000 (20:00 +0100)] 
wininet: Directly return error status from NETCON_init.

14 years agowininet: Directly return error status from refill_buffer.
Jacek Caban [Mon, 30 Nov 2009 18:59:56 +0000 (19:59 +0100)] 
wininet: Directly return error status from refill_buffer.

14 years agowininet: Directly return error status from NETCON_recv.
Jacek Caban [Mon, 30 Nov 2009 18:59:40 +0000 (19:59 +0100)] 
wininet: Directly return error status from NETCON_recv.

14 years agomshtml: Add stub implementation of IHTMLFormElement.
Andrew Eikum [Mon, 30 Nov 2009 17:40:06 +0000 (11:40 -0600)] 
mshtml: Add stub implementation of IHTMLFormElement.

14 years agomshtml.idl: Add DispHTMLFormElement interface.
Andrew Eikum [Mon, 30 Nov 2009 17:40:03 +0000 (11:40 -0600)] 
mshtml.idl: Add DispHTMLFormElement interface.

14 years agocrypt32: Fix test failures.
Juan Lang [Mon, 30 Nov 2009 20:56:02 +0000 (12:56 -0800)] 
crypt32: Fix test failures.

14 years agoshell32/tests: Fix test failure on non-English locale.
Paul Vriens [Mon, 30 Nov 2009 18:56:32 +0000 (19:56 +0100)] 
shell32/tests: Fix test failure on non-English locale.

14 years agowinealsa.drv: Remove wrong calls.
Maarten Lankhorst [Thu, 26 Nov 2009 11:13:28 +0000 (12:13 +0100)] 
winealsa.drv: Remove wrong calls.

snd_pcm_prepare is called below, and snd_pcm_sw_params is called before
sw_params is initialized.

14 years agomshtml: Added onreadystatechange tests.
Jacek Caban [Mon, 30 Nov 2009 17:03:02 +0000 (18:03 +0100)] 
mshtml: Added onreadystatechange tests.

14 years agomshtml: Added onreadystatechange event support.
Jacek Caban [Mon, 30 Nov 2009 17:02:44 +0000 (18:02 +0100)] 
mshtml: Added onreadystatechange event support.

14 years agomshtml: Added IHTMLFrameBase2::get_readyState implementation.
Jacek Caban [Mon, 30 Nov 2009 17:02:25 +0000 (18:02 +0100)] 
mshtml: Added IHTMLFrameBase2::get_readyState implementation.

14 years agomshtml: Added IHTMLFrameBase2::put_src implementation.
Jacek Caban [Mon, 30 Nov 2009 17:02:11 +0000 (18:02 +0100)] 
mshtml: Added IHTMLFrameBase2::put_src implementation.

14 years agomshtml: Always return fake scheme in nsIURI::GetScheme if use_wine_url is set.
Jacek Caban [Mon, 30 Nov 2009 17:01:47 +0000 (18:01 +0100)] 
mshtml: Always return fake scheme in nsIURI::GetScheme if use_wine_url is set.

14 years agomshtml: Added support for frames in navigate_url.
Jacek Caban [Mon, 30 Nov 2009 17:01:31 +0000 (18:01 +0100)] 
mshtml: Added support for frames in navigate_url.

14 years agomshtml: Don't change nsIWineURI in OnStartBinding if it's already marked as document...
Jacek Caban [Mon, 30 Nov 2009 17:01:09 +0000 (18:01 +0100)] 
mshtml: Don't change nsIWineURI in OnStartBinding if it's already marked as document URI.

14 years agomshtml: Added support for relative URLs in navigate_url.
Jacek Caban [Mon, 30 Nov 2009 17:00:38 +0000 (18:00 +0100)] 
mshtml: Added support for relative URLs in navigate_url.

14 years agomshtml: Use special handling only for main documents in AsyncOpen.
Jacek Caban [Mon, 30 Nov 2009 17:00:12 +0000 (18:00 +0100)] 
mshtml: Use special handling only for main documents in AsyncOpen.

14 years agomshtml: Don't fail in NewChannelFromURI if necko failed to create a channel.
Jacek Caban [Mon, 30 Nov 2009 16:59:53 +0000 (17:59 +0100)] 
mshtml: Don't fail in NewChannelFromURI if necko failed to create a channel.

14 years agomshtml: Always set use_wine_url if there is no necko nsIURI available.
Jacek Caban [Mon, 30 Nov 2009 16:59:29 +0000 (17:59 +0100)] 
mshtml: Always set use_wine_url if there is no necko nsIURI available.

14 years agomshtml: Added IHTMLElement2::get_readyState test.
Jacek Caban [Mon, 30 Nov 2009 16:59:15 +0000 (17:59 +0100)] 
mshtml: Added IHTMLElement2::get_readyState test.

14 years agomshtml: Added IHTMLElement2::get_readyState implementation.
Jacek Caban [Mon, 30 Nov 2009 16:58:59 +0000 (17:58 +0100)] 
mshtml: Added IHTMLElement2::get_readyState implementation.

14 years agomshtml: Forward setting window.location to window.location.href.
Jacek Caban [Mon, 30 Nov 2009 16:58:37 +0000 (17:58 +0100)] 
mshtml: Forward setting window.location to window.location.href.

14 years agomshtml: Added IHTMLScreen::get_colorDepth implementation.
Jacek Caban [Mon, 30 Nov 2009 16:58:16 +0000 (17:58 +0100)] 
mshtml: Added IHTMLScreen::get_colorDepth implementation.

14 years agomshtml: Added IHTMLScreen::get_height implementation.
Jacek Caban [Mon, 30 Nov 2009 16:57:56 +0000 (17:57 +0100)] 
mshtml: Added IHTMLScreen::get_height implementation.

14 years agomshtml: Added IHTMLScreen::get_width implementation.
Jacek Caban [Mon, 30 Nov 2009 16:57:39 +0000 (17:57 +0100)] 
mshtml: Added IHTMLScreen::get_width implementation.

14 years agomshtml.idl: Added DispHTMLScreen declaration and use it in HTMLScreen object.
Jacek Caban [Mon, 30 Nov 2009 16:56:53 +0000 (17:56 +0100)] 
mshtml.idl: Added DispHTMLScreen declaration and use it in HTMLScreen object.

14 years agomshtml: Added IHTMLWindow2::get_screen implementation.
Jacek Caban [Mon, 30 Nov 2009 16:56:01 +0000 (17:56 +0100)] 
mshtml: Added IHTMLWindow2::get_screen implementation.

14 years agomshtml/tests: Use the globally available wine_dbgstr_w.
Paul Vriens [Mon, 30 Nov 2009 14:31:08 +0000 (15:31 +0100)] 
mshtml/tests: Use the globally available wine_dbgstr_w.

14 years agomciqtz32: Fix open/close omissions.
Jörg Höhle [Mon, 23 Nov 2009 08:28:00 +0000 (09:28 +0100)] 
mciqtz32: Fix open/close omissions.

14 years agokernel32: Reduce registry access to KEY_READ wherever possible.
Paul Chitescu [Mon, 30 Nov 2009 12:57:16 +0000 (14:57 +0200)] 
kernel32: Reduce registry access to KEY_READ wherever possible.

14 years agofwpuclnt: Add initial minimal stub implementation.
Paul Chitescu [Fri, 27 Nov 2009 16:43:27 +0000 (18:43 +0200)] 
fwpuclnt: Add initial minimal stub implementation.

14 years agodsound: Don't use DirectSoundDevice calls directly.
Maarten Lankhorst [Tue, 24 Nov 2009 13:32:23 +0000 (14:32 +0100)] 
dsound: Don't use DirectSoundDevice calls directly.

14 years agodsound: Use DirectSoundCapture properly in duplex.
Maarten Lankhorst [Tue, 24 Nov 2009 13:22:29 +0000 (14:22 +0100)] 
dsound: Use DirectSoundCapture properly in duplex.

14 years agodsound: Call DSOUND_FullDuplexCreate instead of creating it directly.
Maarten Lankhorst [Tue, 24 Nov 2009 13:16:52 +0000 (14:16 +0100)] 
dsound: Call DSOUND_FullDuplexCreate instead of creating it directly.

14 years agodsound: Remove directsound interface in duplex.
Maarten Lankhorst [Tue, 24 Nov 2009 13:10:52 +0000 (14:10 +0100)] 
dsound: Remove directsound interface in duplex.

14 years agodsound: Fix destruction in duplex.
Maarten Lankhorst [Tue, 24 Nov 2009 13:12:58 +0000 (14:12 +0100)] 
dsound: Fix destruction in duplex.

14 years agontdll: Implement RtlGetNtGlobalFlags(), add related defines to winternl.h.
Dan Kegel [Tue, 24 Nov 2009 01:24:23 +0000 (17:24 -0800)] 
ntdll: Implement RtlGetNtGlobalFlags(), add related defines to winternl.h.

14 years agowinspool/tests: Guard debugging code by #ifdef instead of plain #if.
Gerald Pfeifer [Wed, 25 Nov 2009 23:55:00 +0000 (00:55 +0100)] 
winspool/tests: Guard debugging code by #ifdef instead of plain #if.

14 years agoadvapi32/tests: Add some EnumServicesStatus*W tests.
Paul Vriens [Mon, 30 Nov 2009 10:32:45 +0000 (11:32 +0100)] 
advapi32/tests: Add some EnumServicesStatus*W tests.

14 years agoinclude: Add some system parameters.
Paul Vriens [Mon, 30 Nov 2009 11:30:09 +0000 (12:30 +0100)] 
include: Add some system parameters.

14 years agocrypt32: Revert 8ed5a777de6c9797a285829e07d7a27b3ed01257.
Juan Lang [Sun, 29 Nov 2009 23:14:06 +0000 (15:14 -0800)] 
crypt32: Revert 8ed5a777de6c9797a285829e07d7a27b3ed01257.

Ordinarily removing tests seems like a bad idea, but in this case it
seems the only rational response to the test failures the tests
produce.  The tests check the state of three bits with a variety of
certificate and CRL combinations.  One of these bits is apparently not
set by any version of Windows for any of the tests.  Testing its
absence doesn't seem correct, and I'll explain why in more detail in a
second.  Every permutation of the remaining two bits appears on at
least one Windows version, and no Windows version is obviously more
correct than the rest, so testing them doesn't seem worthwhile.

The one bit that doesn't appear to be set is the bit saying that a
certificate is revoked.  I created CRLs that do in fact revoke some of
the tested certificates, so it appears to me that the bit should be
set.  It's possible that Windows doesn't bother checking the
revocation status of a certificate whose anchor isn't trusted, but
it's impossible to test this in an automated regression test suite,
because adding a trusted certificate requires clicking OK (or its
equivalent) in a dialog.  The dialog is invoked by the system process,
so I can't use a dialog hook to suppress it.  I can test this
hypothesis manually, but it isn't possible to do so in an automated
way.

14 years agocrypt32: Don't copy past end of buffer when removing a string from a multi string.
Juan Lang [Sun, 29 Nov 2009 19:42:57 +0000 (11:42 -0800)] 
crypt32: Don't copy past end of buffer when removing a string from a multi string.

14 years agouser32/tests: Free memory after use.
Nikolay Sivov [Sat, 28 Nov 2009 23:18:59 +0000 (02:18 +0300)] 
user32/tests: Free memory after use.

14 years agoriched20/tests: Don't leak string in test.
Nikolay Sivov [Sat, 28 Nov 2009 18:43:14 +0000 (21:43 +0300)] 
riched20/tests: Don't leak string in test.

14 years agocomctl32/header: Avoid uninitialized memory passed to HDM_INSERTITEM, some fields...
Nikolay Sivov [Sat, 28 Nov 2009 14:31:52 +0000 (17:31 +0300)] 
comctl32/header: Avoid uninitialized memory passed to HDM_INSERTITEM, some fields are always copied.

14 years agocomctl32/listview: Get rid of duplicated helper in tests.
Nikolay Sivov [Sat, 28 Nov 2009 09:04:58 +0000 (12:04 +0300)] 
comctl32/listview: Get rid of duplicated helper in tests.

14 years agocomctl32/listview: New hover value should be passed using LPARAM.
Nikolay Sivov [Sat, 28 Nov 2009 08:50:30 +0000 (11:50 +0300)] 
comctl32/listview: New hover value should be passed using LPARAM.

14 years agocomctl32/listview: Add NM_HOVER notification.
Nikolay Sivov [Fri, 27 Nov 2009 20:05:43 +0000 (23:05 +0300)] 
comctl32/listview: Add NM_HOVER notification.

14 years agocomctl32/listview: Make mouse hover work.
Nikolay Sivov [Fri, 27 Nov 2009 18:08:49 +0000 (21:08 +0300)] 
comctl32/listview: Make mouse hover work.

Event data was overwritten by TME_QUERY response.

14 years agocomctl32/listview: Draw LVIS_CUT items with white foreground color.
Nikolay Sivov [Fri, 27 Nov 2009 16:08:59 +0000 (19:08 +0300)] 
comctl32/listview: Draw LVIS_CUT items with white foreground color.

14 years agocomctl32/listview: Implement LVS_EX_HEADERINALLVIEWS.
Nikolay Sivov [Fri, 27 Nov 2009 12:38:05 +0000 (15:38 +0300)] 
comctl32/listview: Implement LVS_EX_HEADERINALLVIEWS.

14 years agocomctl32/listview: Get rid of helper used once.
Nikolay Sivov [Thu, 26 Nov 2009 20:49:02 +0000 (23:49 +0300)] 
comctl32/listview: Get rid of helper used once.

14 years agocomctl32/listview: Further winproc simplification.
Nikolay Sivov [Thu, 26 Nov 2009 20:30:07 +0000 (23:30 +0300)] 
comctl32/listview: Further winproc simplification.

14 years agocomctl32/listview: Call default procedure directly from handlers if such forwarding...
Nikolay Sivov [Thu, 26 Nov 2009 20:16:50 +0000 (23:16 +0300)] 
comctl32/listview: Call default procedure directly from handlers if such forwarding needed.

14 years agocomctl32/listview: Remove parameter check from winproc for LVM_SETITEMPOSITION32.
Nikolay Sivov [Thu, 26 Nov 2009 20:01:54 +0000 (23:01 +0300)] 
comctl32/listview: Remove parameter check from winproc for LVM_SETITEMPOSITION32.

14 years agocomctl32/listview: Collapse some handlers call in winproc.
Nikolay Sivov [Thu, 26 Nov 2009 19:49:49 +0000 (22:49 +0300)] 
comctl32/listview: Collapse some handlers call in winproc.