wine
18 years agox11drv: Ignore X errors caused by windows being created or deleted.
Alexandre Julliard [Sat, 1 Apr 2006 12:21:31 +0000 (14:21 +0200)] 
x11drv: Ignore X errors caused by windows being created or deleted.

18 years agogdi: In metafile test only print debug output if enabled.
Alexandre Julliard [Fri, 31 Mar 2006 19:03:41 +0000 (21:03 +0200)] 
gdi: In metafile test only print debug output if enabled.

18 years agoloader: Hide the preloader from the ps output.
Alexandre Julliard [Fri, 31 Mar 2006 17:16:22 +0000 (19:16 +0200)] 
loader: Hide the preloader from the ps output.

18 years agowinewrapper: Remove a couple of variables that are no longer needed.
Alexandre Julliard [Fri, 31 Mar 2006 15:39:37 +0000 (17:39 +0200)] 
winewrapper: Remove a couple of variables that are no longer needed.

18 years agontdll: Get rid of the loadorder wildcard support, builtin is always the default now.
Alexandre Julliard [Fri, 31 Mar 2006 15:39:21 +0000 (17:39 +0200)] 
ntdll: Get rid of the loadorder wildcard support, builtin is always the default now.

18 years agokernel: Fix handling of invalid parameter in GlobalSize().
Detlef Riekenberg [Fri, 31 Mar 2006 10:27:30 +0000 (12:27 +0200)] 
kernel: Fix handling of invalid parameter in GlobalSize().

18 years agoole: Use ncalrpc instead of ncacn_np as the RPC transport.
Robert Shearman [Fri, 31 Mar 2006 11:34:25 +0000 (12:34 +0100)] 
ole: Use ncalrpc instead of ncacn_np as the RPC transport.

Use ncalrpc instead of ncacn_np as the transport as this is more similar
to how ole32 from NT works and should also be compatible with rpcrt4
from Win9x, allowing more combinations of dlls to work.

18 years agokernel: Add some documentation for simple process functions.
Robert Shearman [Fri, 31 Mar 2006 11:33:04 +0000 (12:33 +0100)] 
kernel: Add some documentation for simple process functions.

18 years agowidl: There's no need to cast _StubMsg - it's already of the correct type.
Robert Shearman [Fri, 31 Mar 2006 11:55:05 +0000 (12:55 +0100)] 
widl: There's no need to cast _StubMsg - it's already of the correct type.

18 years agowidl: Only assign variables if not a string and only create a local variable if not...
Robert Shearman [Fri, 31 Mar 2006 11:50:46 +0000 (12:50 +0100)] 
widl: Only assign variables if not a string and only create a local variable if not a sized parameter.

Only assign variables if not a string and only create a local variable
if not a sized parameter. Fixes type mismatches in the generated code
due to differences in the algorithms between creating local variables
and using them.

18 years agowidl: Initialise the temporary variable to 0 for parameters with more than one level...
Robert Shearman [Fri, 31 Mar 2006 11:50:10 +0000 (12:50 +0100)] 
widl: Initialise the temporary variable to 0 for parameters with more than one level of indirection.

18 years agowidl: Create the correct variable type for parameters with more than one level of...
Robert Shearman [Fri, 31 Mar 2006 11:49:57 +0000 (12:49 +0100)] 
widl: Create the correct variable type for parameters with more than one level of indirection.

18 years agowidl: Re-use print_phase_basetype for generating return value marshaling and unmarsha...
Robert Shearman [Fri, 31 Mar 2006 11:49:36 +0000 (12:49 +0100)] 
widl: Re-use print_phase_basetype for generating return value marshaling and unmarshaling code.

18 years agowidl: Move handling of base type marshaling and unmarshaling to a separate function.
Robert Shearman [Fri, 31 Mar 2006 11:48:24 +0000 (12:48 +0100)] 
widl: Move handling of base type marshaling and unmarshaling to a separate function.

Move handling of base type marshaling and unmarshaling to a separate
function and improve it to support return values.

18 years agowidl: Use print_phase_function for printing NdrPointerFree call.
Robert Shearman [Fri, 31 Mar 2006 11:47:50 +0000 (12:47 +0100)] 
widl: Use print_phase_function for printing NdrPointerFree call.

18 years agowidl: Add a function to generate the Ndr type calls.
Robert Shearman [Fri, 31 Mar 2006 11:47:35 +0000 (12:47 +0100)] 
widl: Add a function to generate the Ndr type calls.

- Add a function to generate the Ndr type calls.
- Fix a typo where the aligned buffer was added to itself, rather than
assigned.

18 years agowidl: Only write the buffer incrementing code for the marshaling and unmarshaling...
Robert Shearman [Fri, 31 Mar 2006 11:47:22 +0000 (12:47 +0100)] 
widl: Only write the buffer incrementing code for the marshaling and unmarshaling phases.

Only write the buffer incrementing code for the marshaling and
unmarshaling phases - buffer sizing is handled elsewhere and freeing
isn't applicable.

18 years agowidl: Output the necessary sizing information for other phases.
Robert Shearman [Fri, 31 Mar 2006 11:47:08 +0000 (12:47 +0100)] 
widl: Output the necessary sizing information for other phases.

Output the necessary sizing information for PHASE_BUFFERSIZE and
PHASE_FREE as well as PHASE_MARSHAL. Standardise this rule in a new
function.

18 years agowidl: Output NULL ref pointer check for pointer levels > 1 too.
Robert Shearman [Fri, 31 Mar 2006 11:46:56 +0000 (12:46 +0100)] 
widl: Output NULL ref pointer check for pointer levels > 1 too.

18 years agowidl: Fix a GCC warning in the generated client and server code.
Robert Shearman [Fri, 31 Mar 2006 11:46:28 +0000 (12:46 +0100)] 
widl: Fix a GCC warning in the generated client and server code.

18 years agowidl: The lval member of var_t is essentially a duplicate of eval->cval.
Robert Shearman [Fri, 31 Mar 2006 11:45:43 +0000 (12:45 +0100)] 
widl: The lval member of var_t is essentially a duplicate of eval->cval.

- Generate eval's for enums that don't explicitly have one. This means
that enums written in header files won't match exactly what has been put
into the IDL file, but the numeric constat is the same and MIDL does a
similar thing.
- Replace constant lookups with eval->cval instead of lval.

18 years agowidl: De-reference parameters' types before deciding what to do with them.
Robert Shearman [Fri, 31 Mar 2006 11:45:16 +0000 (12:45 +0100)] 
widl: De-reference parameters' types before deciding what to do with them.

De-reference parameters' types before deciding what to do with them.
Also dereference string parameters since they are immediately
dispatched to write_string_tfs when the string attribute is detected
without any further processing done on them.

18 years agowidl: Write pointer calls for all non-basetype pointer parameters to functions.
Robert Shearman [Fri, 31 Mar 2006 11:46:43 +0000 (12:46 +0100)] 
widl: Write pointer calls for all non-basetype pointer parameters to functions.

18 years agowidl: Write definitions for MIDL_user_allocate and MIDL_user_free in the header.
Robert Shearman [Fri, 31 Mar 2006 11:45:29 +0000 (12:45 +0100)] 
widl: Write definitions for MIDL_user_allocate and MIDL_user_free in the header.

Write definitions for MIDL_user_allocate and MIDL_user_free in the
header when writing out RPC interfaces to prevent compile failures in
the generated client/server code.

18 years agowidl: Write out the pre- and postamble for RPC interfaces with no methods.
Robert Shearman [Fri, 31 Mar 2006 11:50:34 +0000 (12:50 +0100)] 
widl: Write out the pre- and postamble for RPC interfaces with no methods.

18 years agowidl: Output interface defined guard for rpc interfaces too.
Robert Shearman [Fri, 31 Mar 2006 11:44:53 +0000 (12:44 +0100)] 
widl: Output interface defined guard for rpc interfaces too.

18 years agowidl: NdrFcShort should be written out instead of NdrShort.
Robert Shearman [Fri, 31 Mar 2006 11:44:39 +0000 (12:44 +0100)] 
widl: NdrFcShort should be written out instead of NdrShort.

18 years agowidl: Output the numeric equivalent of FC_END, not the string FC_END itself.
Robert Shearman [Fri, 31 Mar 2006 11:44:27 +0000 (12:44 +0100)] 
widl: Output the numeric equivalent of FC_END, not the string FC_END itself.

18 years agowidl: Support references in type_memsize.
Robert Shearman [Fri, 31 Mar 2006 11:44:16 +0000 (12:44 +0100)] 
widl: Support references in type_memsize.

18 years agowidl: Only output code for non-object interfaces in client and server.
Robert Shearman [Fri, 31 Mar 2006 11:44:04 +0000 (12:44 +0100)] 
widl: Only output code for non-object interfaces in client and server.

Only output code for non-object interfaces in client and server
generation and convert the while loops into for loops.

18 years agoRelease 0.9.11. wine-0.9.11
Alexandre Julliard [Fri, 31 Mar 2006 12:38:15 +0000 (14:38 +0200)] 
Release 0.9.11.

18 years agoserver: Avoid crash on startup when the configuration dir doesn't exist.
Alexandre Julliard [Fri, 31 Mar 2006 11:06:04 +0000 (13:06 +0200)] 
server: Avoid crash on startup when the configuration dir doesn't exist.

18 years agouser/tests: Flush events before running the keyboard event test.
Alexandre Julliard [Fri, 31 Mar 2006 10:51:54 +0000 (12:51 +0200)] 
user/tests: Flush events before running the keyboard event test.

18 years agocomctl32: Force a specific day value in the monthcal test.
Alexandre Julliard [Fri, 31 Mar 2006 10:45:59 +0000 (12:45 +0200)] 
comctl32: Force a specific day value in the monthcal test.

Avoids test failure when the current day happens to be the 31st...

18 years agoadvpack: LaunchINFSectionExW is available, so mark it so in the spec file.
James Hawkins [Thu, 30 Mar 2006 18:50:37 +0000 (12:50 -0600)] 
advpack: LaunchINFSectionExW is available, so mark it so in the spec file.

18 years agoadvpack: Forward ExecuteCabA to its Unicode counterpart.
James Hawkins [Thu, 30 Mar 2006 18:26:59 +0000 (12:26 -0600)] 
advpack: Forward ExecuteCabA to its Unicode counterpart.

18 years agoole32: Remove unnecessary commenting out of the RPC interfaces in the dcom idl file.
Robert Shearman [Thu, 30 Mar 2006 18:56:28 +0000 (19:56 +0100)] 
ole32: Remove unnecessary commenting out of the RPC interfaces in the dcom idl file.

18 years agowininet: Fix some string length calculations.
Robert Shearman [Thu, 30 Mar 2006 18:55:36 +0000 (19:55 +0100)] 
wininet: Fix some string length calculations.

Fix some string length calculations that didn't account for the
different sized characters with Unicode.

18 years agowininet: Only access the URL in the cache by the provided offset.
Robert Shearman [Thu, 30 Mar 2006 18:55:15 +0000 (19:55 +0100)] 
wininet: Only access the URL in the cache by the provided offset.

18 years agowined3d: Move fields common to vertex shaders and pixel shaders to IWineD3DBaseShader.
H. Verbeet [Thu, 30 Mar 2006 17:14:31 +0000 (19:14 +0200)] 
wined3d: Move fields common to vertex shaders and pixel shaders to IWineD3DBaseShader.

18 years agocrypt32: Tiny fixes.
Juan Lang [Thu, 30 Mar 2006 16:31:14 +0000 (08:31 -0800)] 
crypt32: Tiny fixes.

18 years agocrypt32: Fix certificate adding
Juan Lang [Thu, 30 Mar 2006 15:27:05 +0000 (07:27 -0800)] 
crypt32: Fix certificate adding

- Implement add disposition in CertAddCertificateContextToStore,
  rather than in each store.
- Add a few more tests.

18 years agomsvcrt: Fix read beyond end of string in __unDNameEx().
Rein Klazes [Thu, 30 Mar 2006 14:30:01 +0000 (16:30 +0200)] 
msvcrt: Fix read beyond end of string in __unDNameEx().

18 years agospoolss: Add DllAllocSplMem and DllFreeSplMem.
Detlef Riekenberg [Thu, 30 Mar 2006 13:59:17 +0000 (15:59 +0200)] 
spoolss: Add DllAllocSplMem and DllFreeSplMem.

18 years agogdi32: Add a test for WMF->EMF conversions performed by SetWinMetaFileBits.
Dmitry Timoshkov [Thu, 30 Mar 2006 14:03:02 +0000 (23:03 +0900)] 
gdi32: Add a test for WMF->EMF conversions performed by SetWinMetaFileBits.

These tests currently fail in Wine.

18 years agox11drv: Update Hungarian keyboard layout to better match the X11 one.
Dmitry Timoshkov [Thu, 30 Mar 2006 14:02:41 +0000 (23:02 +0900)] 
x11drv: Update Hungarian keyboard layout to better match the X11 one.

18 years agowidl: Implement support for ref pointers to strings.
Eric Kohl [Wed, 29 Mar 2006 10:42:29 +0000 (12:42 +0200)] 
widl: Implement support for ref pointers to strings.

18 years agogdi32: Move the font substitution list to a standard Wine list
Huw Davies [Thu, 30 Mar 2006 13:38:07 +0000 (14:38 +0100)] 
gdi32: Move the font substitution list to a standard Wine list

(based on a patch by Byeong-Sik Jeon).

18 years agouser: Only wait for sent messages in wait_message_reply.
Alexandre Julliard [Thu, 30 Mar 2006 14:23:56 +0000 (16:23 +0200)] 
user: Only wait for sent messages in wait_message_reply.

18 years agox11drv: Filter a few more event types in filter_event.
Alexandre Julliard [Thu, 30 Mar 2006 14:23:12 +0000 (16:23 +0200)] 
x11drv: Filter a few more event types in filter_event.

ConfigureNotify and related events should only be processed when
posted messages are selected. There's no need to handle MappingNotify
if keyboard events are not selected.

18 years agodlls: Removed a number of no longer needed dependencies.
Alexandre Julliard [Thu, 30 Mar 2006 11:24:11 +0000 (13:24 +0200)] 
dlls: Removed a number of no longer needed dependencies.

18 years agospoolss: Add minimal spoolss.dll.
Detlef Riekenberg [Wed, 29 Mar 2006 19:49:52 +0000 (21:49 +0200)] 
spoolss: Add minimal spoolss.dll.

18 years agouser: Don't send WM_PARENTNOTIFY to the desktop window.
Alexandre Julliard [Thu, 30 Mar 2006 11:22:27 +0000 (13:22 +0200)] 
user: Don't send WM_PARENTNOTIFY to the desktop window.

18 years agoadvpack: Open the INF file if the RSC_FLAG_INF flag is specified.
James Hawkins [Wed, 29 Mar 2006 17:36:04 +0000 (11:36 -0600)] 
advpack: Open the INF file if the RSC_FLAG_INF flag is specified.

18 years agoadvpack: Forward LaunchINFSectionExA to its Unicode counterpart.
James Hawkins [Thu, 30 Mar 2006 10:05:27 +0000 (04:05 -0600)] 
advpack: Forward LaunchINFSectionExA to its Unicode counterpart.

18 years agoadvpack: Fix the documentation for the cmdline parameter of LaunchInfSection/Ex.
James Hawkins [Thu, 30 Mar 2006 09:52:17 +0000 (03:52 -0600)] 
advpack: Fix the documentation for the cmdline parameter of LaunchInfSection/Ex.

18 years agokernel: Resource browsing.
Eric Pouech [Wed, 29 Mar 2006 19:23:18 +0000 (21:23 +0200)] 
kernel: Resource browsing.

Try to be a bit more strict when checking for resource mapping in
exception handler (and prevent some exceptions while in exception
handler).

18 years agowined3d: Add WINED3DDEVTYPE to wined3d_types.h.
Stefan Dösinger [Wed, 29 Mar 2006 22:16:08 +0000 (00:16 +0200)] 
wined3d: Add WINED3DDEVTYPE to wined3d_types.h.

18 years agotwain: Add German resource.
Henning Gerhardt [Thu, 30 Mar 2006 06:58:09 +0000 (08:58 +0200)] 
twain: Add German resource.

18 years agokernel32: Display the parameter that caused a page fault in GlobalFree().
Detlef Riekenberg [Thu, 30 Mar 2006 08:37:52 +0000 (10:37 +0200)] 
kernel32: Display the parameter that caused a page fault in GlobalFree().

18 years agokernel: Fix handling of invalid parameter in GlobalFlags().
Detlef Riekenberg [Wed, 29 Mar 2006 18:48:39 +0000 (20:48 +0200)] 
kernel: Fix handling of invalid parameter in GlobalFlags().

18 years agotools: Remove wineconf.
Detlef Riekenberg [Wed, 29 Mar 2006 22:52:26 +0000 (00:52 +0200)] 
tools: Remove wineconf.

18 years agoDEVELOPER-HINTS: Some directories are renamed / removed / added.
Detlef Riekenberg [Wed, 29 Mar 2006 21:34:42 +0000 (23:34 +0200)] 
DEVELOPER-HINTS:  Some directories are renamed / removed / added.

18 years agooleaut32: Add IPersist to QueryInterface.
Robert Shearman [Wed, 29 Mar 2006 17:41:24 +0000 (18:41 +0100)] 
oleaut32: Add IPersist to QueryInterface.

18 years agooleaut32: Zero out parameter in LoadRegTypeLib in case of failure.
Robert Shearman [Wed, 29 Mar 2006 17:41:37 +0000 (18:41 +0100)] 
oleaut32: Zero out parameter in LoadRegTypeLib in case of failure.

18 years agooleaut32: Replace memcmp with IsEqualIID macro.
Robert Shearman [Wed, 29 Mar 2006 17:41:01 +0000 (18:41 +0100)] 
oleaut32: Replace memcmp with IsEqualIID macro.

Replace memcmp with IsEqualIID macro that doesn't require a size
parameter and remove the unneeded brackets to give more compact and
more readable code.

18 years agoole32: Don't process posted messages in CoWaitForMultipleHandles.
Robert Shearman [Wed, 29 Mar 2006 17:40:46 +0000 (18:40 +0100)] 
ole32: Don't process posted messages in CoWaitForMultipleHandles.

Tests with native show that during COM calls posted messages aren't
retrieved other than COM calls so change the PeekMessage parameters in
CoWaitForMultipleHandles to duplicate this.

18 years agoole32: Try to retrieve messages that are COM calls first.
Robert Shearman [Wed, 29 Mar 2006 17:40:07 +0000 (18:40 +0100)] 
ole32: Try to retrieve messages that are COM calls first.

Try to retrieve messages that are COM calls first in
CoWaitForMultipleHandles before retrieving other types.

18 years agoole32: Put the PeekMessage call of CoWaitForMultipleHandles into a separate function.
Robert Shearman [Wed, 29 Mar 2006 17:39:03 +0000 (18:39 +0100)] 
ole32: Put the PeekMessage call of CoWaitForMultipleHandles into a separate function.

Put the PeekMessage call of CoWaitForMultipleHandles into a separate
function so that the order and type of the messages retrieved can be
customised in the future.

18 years agoole32: Whether the message loop is entered in CoWaitForMultipleHandles,
Robert Shearman [Wed, 29 Mar 2006 17:38:42 +0000 (18:38 +0100)] 
ole32: Whether the message loop is entered in CoWaitForMultipleHandles,
should depend on whether the current apartment is a single threaded one.

18 years agoole32: Pass the no yield flag to PeekMessage.
Robert Shearman [Wed, 29 Mar 2006 17:38:21 +0000 (18:38 +0100)] 
ole32: Pass the no yield flag to PeekMessage.

Pass the no yield flag to PeekMessage since we sleep in
MsgWaitForMultipleObjectsEx and the extra context switch is wasteful.

18 years agoserver: Store the token source.
Robert Shearman [Wed, 29 Mar 2006 17:37:39 +0000 (18:37 +0100)] 
server: Store the token source.

18 years agoinclude: Add DFC_POPUPMENU.
Huw Davies [Wed, 29 Mar 2006 15:31:57 +0000 (16:31 +0100)] 
include: Add DFC_POPUPMENU.

18 years agowininet: Clean up HTTP_GetCustomHeaderIndex.
Mike McCormack [Thu, 30 Mar 2006 09:20:04 +0000 (18:20 +0900)] 
wininet: Clean up HTTP_GetCustomHeaderIndex.

18 years agowininet: Use a lookup table sorted by index so we don't need a loop to do lookups.
Mike McCormack [Thu, 30 Mar 2006 09:02:54 +0000 (18:02 +0900)] 
wininet: Use a lookup table sorted by index so we don't need a loop to do lookups.

18 years agoWININET: Clean up HttpQueryInfo.
Mike McCormack [Thu, 30 Mar 2006 09:01:48 +0000 (18:01 +0900)] 
WININET: Clean up HttpQueryInfo.

Fixes another return FALSE without SetLastError.

18 years agowininet: Make sure to set LastError when returning FALSE in HttpQueryInfo.
Mike McCormack [Thu, 30 Mar 2006 09:00:30 +0000 (18:00 +0900)] 
wininet: Make sure to set LastError when returning FALSE in HttpQueryInfo.

18 years agoole32: Fix StgOpenStorage's handling of the STGM_PRIORITY flag.
Mike McCormack [Wed, 29 Mar 2006 08:09:25 +0000 (17:09 +0900)] 
ole32: Fix StgOpenStorage's handling of the STGM_PRIORITY flag.

18 years agox11drv: Replace the SWP_WINE_NOHOSTMOVE flag by a lock count.
Alexandre Julliard [Wed, 29 Mar 2006 16:27:01 +0000 (18:27 +0200)] 
x11drv: Replace the SWP_WINE_NOHOSTMOVE flag by a lock count.

18 years agontdll: Fix CDROM raw reads.
Petr Tesarik [Mon, 27 Mar 2006 08:20:39 +0000 (10:20 +0200)] 
ntdll: Fix CDROM raw reads.

- Fix incorrect data sizes.
- Fix CDDA addressing.
- Implement XAForm2 mode on Linux.

18 years agowinecfg: Disable the desktop option when configuring a specific application.
Alexandre Julliard [Wed, 29 Mar 2006 11:49:36 +0000 (13:49 +0200)] 
winecfg: Disable the desktop option when configuring a specific application.

18 years agowined3d: Create an IWineD3DBaseShader class.
H. Verbeet [Tue, 28 Mar 2006 19:10:51 +0000 (21:10 +0200)] 
wined3d: Create an IWineD3DBaseShader class.

18 years agowined3d: Move the vshader_ins and pshader_ins arrays into their respective objects.
H. Verbeet [Tue, 28 Mar 2006 19:10:44 +0000 (21:10 +0200)] 
wined3d: Move the vshader_ins and pshader_ins arrays into their respective objects.

18 years agowined3d: Move the SHADER_OPCODE definition to wined3d_private.h.
H. Verbeet [Tue, 28 Mar 2006 19:10:32 +0000 (21:10 +0200)] 
wined3d: Move the SHADER_OPCODE definition to wined3d_private.h.

18 years agowined3d: Pass the correct number of parameters for texld with ps version >= 2.
H. Verbeet [Tue, 28 Mar 2006 19:10:22 +0000 (21:10 +0200)] 
wined3d: Pass the correct number of parameters for texld with ps version >= 2.

18 years agouser32: Fix SPI_GETLISTBOXSMOOTHSCROLLING, and implement SPI_SETLISTBOXSMOOTHSCROLLING.
Mike McCormack [Wed, 29 Mar 2006 06:56:55 +0000 (15:56 +0900)] 
user32: Fix SPI_GETLISTBOXSMOOTHSCROLLING, and implement SPI_SETLISTBOXSMOOTHSCROLLING.

18 years agouser32: Implement SPI_[GS]ETUIEFFECTS.
Mike McCormack [Wed, 29 Mar 2006 06:58:26 +0000 (15:58 +0900)] 
user32: Implement SPI_[GS]ETUIEFFECTS.

18 years agouser32: Implement SPI_[GS]ETTOOLTIPANIMATION and SPI_[GS]ETTOOLTIPFADE.
Mike McCormack [Wed, 29 Mar 2006 06:58:06 +0000 (15:58 +0900)] 
user32: Implement SPI_[GS]ETTOOLTIPANIMATION and SPI_[GS]ETTOOLTIPFADE.

18 years agouser32: Implement SPI_[GS]ETMENUANIMATION and SPI_[GS]ETSELECTIONFADE.
Mike McCormack [Wed, 29 Mar 2006 06:57:34 +0000 (15:57 +0900)] 
user32: Implement SPI_[GS]ETMENUANIMATION and SPI_[GS]ETSELECTIONFADE.

18 years agouser32: Implement SystemParametersInfo(SPI_[SG]ETCURSORSHADOW).
Mike McCormack [Wed, 29 Mar 2006 06:56:30 +0000 (15:56 +0900)] 
user32: Implement SystemParametersInfo(SPI_[SG]ETCURSORSHADOW).

18 years agouser32: Implement SystemParametersInfo(SPI_[GS]ETCOMBOBOXANIMATION).
Mike McCormack [Wed, 29 Mar 2006 06:56:09 +0000 (15:56 +0900)] 
user32: Implement SystemParametersInfo(SPI_[GS]ETCOMBOBOXANIMATION).

18 years agouser32: Implement SPI_[SG]ETCARETWIDTH.
Mike McCormack [Wed, 29 Mar 2006 06:55:39 +0000 (15:55 +0900)] 
user32: Implement SPI_[SG]ETCARETWIDTH.

18 years agomshtml: Don't free the URL we have just stored in the callback object.
Alexandre Julliard [Tue, 28 Mar 2006 18:00:18 +0000 (20:00 +0200)] 
mshtml: Don't free the URL we have just stored in the callback object.

18 years agox11drv: Only warp the mouse pointer if it has actually moved.
Alexandre Julliard [Tue, 28 Mar 2006 16:18:01 +0000 (18:18 +0200)] 
x11drv: Only warp the mouse pointer if it has actually moved.

18 years agod3d8: Add a TRACE for IDirect3DDevice8Impl_CreateVertexBuffer.
H. Verbeet [Sun, 26 Mar 2006 02:19:00 +0000 (04:19 +0200)] 
d3d8: Add a TRACE for IDirect3DDevice8Impl_CreateVertexBuffer.

18 years agowined3d: Use WINED3DSWAPEFFECT in the wined3d headers and code.
Stefan Dösinger [Tue, 28 Mar 2006 10:47:36 +0000 (12:47 +0200)] 
wined3d: Use WINED3DSWAPEFFECT in the wined3d headers and code.

18 years agowined3d: Add WINED3DPOOL to wined3d_types.h.
Stefan Dösinger [Tue, 28 Mar 2006 12:20:47 +0000 (14:20 +0200)] 
wined3d: Add WINED3DPOOL to wined3d_types.h.

18 years agotwain: Add a property sheet UI for scanning.
Aric Stewart [Wed, 22 Mar 2006 19:34:22 +0000 (13:34 -0600)] 
twain: Add a property sheet UI for scanning.

18 years agox11drv: Reinitialize the display settings when using a desktop window.
Alexandre Julliard [Tue, 28 Mar 2006 14:55:03 +0000 (16:55 +0200)] 
x11drv: Reinitialize the display settings when using a desktop window.

18 years agotwain: A few cleanups, using some consts from sane.
Aric Stewart [Wed, 22 Mar 2006 19:34:44 +0000 (13:34 -0600)] 
twain: A few cleanups, using some consts from sane.