Commit Graph

37278 Commits

Author SHA1 Message Date
Rob Shearman b069b53bd9 rsaenh: Add a value to the empty braces in the initialiser for aOIDDescriptor in build_hash_signature.
An empty initialiser isn't supported on some compilers like MSVC.
2008-10-15 16:45:09 +02:00
Kai Blin 4ff3d9954e comdlg32: Avoid possible NULL pointer dereference (Coverity). 2008-10-15 16:44:05 +02:00
Marcus Meissner 4dceb1f8bf jscript: Check for This->ctx and This->site earlier (Coverity). 2008-10-15 16:43:54 +02:00
Rob Shearman 0a2efbb1cc rsaenh: Make some functions used in only one file static. 2008-10-15 15:22:58 +02:00
Rob Shearman 07b325f8f2 shell32: Fix the position where WINAPI is specified in the LPFNOFN typedef. 2008-10-15 15:22:50 +02:00
Henri Verbeet e22bda24c6 wined3d: Simplify texture target handling in surface_blt_to_drawable(). 2008-10-15 15:22:11 +02:00
Henri Verbeet c777f962a2 wined3d: We only need to enable texturing for a target if we're going to draw with it (without a shader).
Also, these enables cause problems if they're done while the context
is setup for blitting.
2008-10-15 15:22:06 +02:00
Henri Verbeet 2889b42a3f wined3d: Cleanup properly if creating the context array fails in CreateAdditionalSwapChain(). 2008-10-15 15:21:41 +02:00
Henri Verbeet 2bb7aa7252 wined3d: Don't crash in CreateAdditionalSwapChain() if the context array wasn't allocated yet. 2008-10-15 15:21:35 +02:00
Nikolay Sivov e2399a969f oleacc: Implemented GetRoleText[A/W] with tests. 2008-10-15 15:20:31 +02:00
Austin English 3d143253e4 wininet: Quiet a noisy fixme. 2008-10-15 14:02:20 +02:00
Austin English 6f23a98c08 advapi32: Quiet a noisy fixme. 2008-10-15 14:02:16 +02:00
Lei Zhang ec91536ec9 user32: Send messages for edit control context menu operations. 2008-10-15 14:02:04 +02:00
Lei Zhang dc9eeb75ba shlwapi: Properly handle pszExtra in IQueryAssociations_GetString. 2008-10-15 14:02:01 +02:00
Michael Karcher 859f3bff88 msxml3: Initialize xmldoc->_private in IPersistStream::Load for IXMLDOMDocument. 2008-10-15 14:01:57 +02:00
Andrew Talbot 5ae5a68ed3 kernel32: Sign-compare warnings fix. 2008-10-15 14:01:53 +02:00
Jacek Caban 88c12282e3 jscript: Added isNaN implementation. 2008-10-15 12:22:22 +02:00
Michael Stefaniuc d6359edd3c shlwapi: Remove break after return (Smatch). 2008-10-15 12:21:42 +02:00
Detlef Riekenberg 2910b90c70 comctl32/tests: Fix tests to not depend on 96 dpi, make it pass in Wine. 2008-10-14 14:02:28 +02:00
Detlef Riekenberg 680b5df5cf shlwapi: Implement SHSendMessageBroadcastA/W. 2008-10-14 14:01:22 +02:00
Lei Zhang 57122e4daa shlwapi: Handle ASSOCSTR_FRIENDLYAPPNAME in IQueryAssociations_GetString. 2008-10-14 13:41:57 +02:00
Lei Zhang 58797fc54c shlwapi: Refactor data return code in IQueryAssociations_fnGetString. 2008-10-14 13:41:57 +02:00
Lei Zhang 4e0c0ec157 shlwapi: Refactor get executable code in IQueryAssociations_fnGetString. 2008-10-14 13:41:57 +02:00
Aric Stewart 48ad706c08 user32: DrawText handling of 0 counts with string, empty strings and -1 counts with empty string and NULL strings. 2008-10-14 13:41:57 +02:00
Aric Stewart 8b9ebc30c9 user32: In DrawTextW/A make sure to properly initialize the cbSize of DRAWTEXTPARAMS. 2008-10-14 13:41:56 +02:00
Juan Lang a504a79d65 rpcrt4: Add tests for UuidCreate. 2008-10-14 13:41:56 +02:00
Reece Dunn 17bf6ef8fc shell32: Print the correct GUIDs in the shellpath tests. 2008-10-14 13:41:56 +02:00
Kai Blin d9145df0da winmm: Use skip() instead of trace() when skipping tests. 2008-10-14 13:41:56 +02:00
Henri Verbeet 17096364e2 comdlg32: Add a basic test for IShellView2_CreateViewWindow2. 2008-10-14 13:41:56 +02:00
Henri Verbeet abb7f92b78 shell32: Add a FIXME for unimplemented view modes. 2008-10-14 13:41:56 +02:00
Henri Verbeet 67f86a410f shell32: Implement IShellView2_CreateViewWindow2. 2008-10-14 13:41:55 +02:00
Henri Verbeet 5cfb3c4a6f shell32: Add IShellView32 stubs. 2008-10-14 13:41:55 +02:00
Lei Zhang 69871bedf1 version: Prevent infinite looping in VersionInfo32_FindChild. 2008-10-14 13:41:55 +02:00
Detlef Riekenberg 57a5a60ca3 gdi32/tests: Fix tests to not depend on 96 dpi. 2008-10-14 13:41:55 +02:00
Rob Shearman 8ef9d20f96 wnaspi32: Protect the inclusion of dirent.h in aspi.c.
This allows the file to be compiled on platforms that don't have the
header file, such as MSVC.
2008-10-14 13:41:54 +02:00
Rob Shearman b919443a58 rpcrt4: The type referred to by the wire_marshal attribute in server.idl must be a pointer.
Therefore, declare the structure as user_bstr_t and make wire_bstr_t
be a typedef to a pointer of this type.
2008-10-14 13:41:54 +02:00
Rob Shearman b06f882072 jscript: Fix shift/reduce conflict caused by ArrayLiteral. 2008-10-14 11:26:37 +02:00
Jacek Caban 122198a24f jscript: Added Date.getTime() implementation. 2008-10-14 11:26:33 +02:00
Jacek Caban 9932f29e69 jscript: Added Date constructor implementation. 2008-10-14 11:26:27 +02:00
Juan Lang 1bde692112 crypt32: Fix more test failures on Win9x. 2008-10-14 11:26:13 +02:00
Roderick Colenbrander eb7f85f691 opengl32/tests: Don't call wglGetProcAddress at the start of the test. 2008-10-14 11:26:06 +02:00
Andrew Talbot 763562d383 itss: Sign-compare warnings fix. 2008-10-14 11:26:00 +02:00
Andrew Talbot 5b598f2ec4 imm32: Sign-compare warnings fix. 2008-10-14 11:25:54 +02:00
Jacek Caban c97d498f40 mshtml: Added IOmNavigator::get_appVersion implementation. 2008-10-14 11:25:39 +02:00
Jacek Caban 53d6b6616e mshtml: Use set_nsstyle_attr_var in IHTMLStyle::put_left implementation. 2008-10-14 11:25:23 +02:00
Jacek Caban 6cf4060aff mshtml: Added IHTMLStyle::put_top(VT_NULL) implementation. 2008-10-14 11:25:18 +02:00
Jacek Caban 7c8cdd519b mshtml: Don't fail in IHTMLDOMNode::appendChild if AppendChild failed. 2008-10-14 11:25:13 +02:00
Jacek Caban beec20f2f5 mshtml: Added IHTMLDOMNode::insertBefore implementation. 2008-10-14 11:25:08 +02:00
Jacek Caban aae2c59dfd mshtml: Added IHTMImgElement::get_src implementation. 2008-10-14 11:25:02 +02:00
Jacek Caban 59c66e34a9 mshtml: Added IHTMLElement::put_innerText implementation. 2008-10-14 11:24:50 +02:00