Commit Graph

65565 Commits

Author SHA1 Message Date
Piotr Caban 91dcc245f9 jscript: Make Array.pop generic. 2010-01-20 20:06:55 +01:00
Aric Stewart 9a9c075ee9 oleaut32: Do not crash in logging if string is NULL. 2010-01-20 20:06:47 +01:00
Alexandre Julliard 4ae9c2fe1f wine.inf: Add entries for some of the global options. 2010-01-20 20:06:08 +01:00
Alexandre Julliard 39a1227cdb ntdll: Load the various PEB global options at startup. 2010-01-20 17:30:00 +01:00
Alexandre Julliard 1c119dad6d ntdll: Implement LdrQueryImageFileExecutionOptions and use it to retrieve the per-process global flag. 2010-01-20 17:11:03 +01:00
Christian Costa 132ba27f2b gdi32: Improve some FIXMEs. 2010-01-20 16:30:47 +01:00
Jacek Caban 3b20cb11c8 mshtml: Store document as IHTMLDocument2 interface. 2010-01-20 16:29:58 +01:00
Alexandre Julliard de3fa09cb2 msi: Add a partial stub for the ValidateProductID control event. 2010-01-20 15:36:00 +01:00
André Hentschel 643625b9e0 kernel32/tests: Initial fiber tests. 2010-01-20 15:35:38 +01:00
Freddie Tilley 69d7233e3e ntdll: Set cpu frequency for FreeBSD 7.2 and higher. 2010-01-20 15:34:41 +01:00
Jason Edmeades 06c45a8d59 msi: Correct the setting of environment variables.
Contrary to the MSDN, you can 'create only' whilst using a previous value
(ie +-variable and [~];value). This breaks the install of an application
I was debugging who uses that throughout for all their variables. In
addition whilst adding some tests I've also cleaned up invalid prefix
syntax handling and semicolon removal if the original string is empty.
2010-01-20 15:34:19 +01:00
Maarten Lankhorst bfe9e6d74c avifile: Fix playback of fixed sample size audio streams. 2010-01-20 15:32:23 +01:00
Henri Verbeet 7f8ccf0342 d3d9: Add a separate function for stateblock initialization. 2010-01-20 15:32:15 +01:00
Henri Verbeet d967973d8c wined3d: Set the query.c GLINFO_LOCATION to *gl_info. 2010-01-20 15:30:04 +01:00
Henri Verbeet ee1f2c4654 wined3d: Don't leak the context array in the swapchain_init() error path. 2010-01-20 15:29:57 +01:00
Michael Stefaniuc b4448d9b77 crypt32/tests: Add a win_skip(). 2010-01-20 15:29:50 +01:00
Paul Vriens c5112d9f6f rasapi32/tests: Fix some test failures on Win9x. 2010-01-19 16:51:16 +01:00
Paul Vriens 83c422e111 shell32/tests: Fix crash on ancient Win95. 2010-01-19 16:51:05 +01:00
Hans Leidekker 72393c55e9 msi: Add a test to exersize the code to retrieve rows from join tables. 2010-01-19 16:50:56 +01:00
André Hentschel 13e8505e58 msvcrt: Fix typo. 2010-01-19 16:50:26 +01:00
Ilya Shpigor a374b3cbbe winex11.drv: Produce VK_CANCEL vkey on the Ctrl+Pause/Break pressing. 2010-01-19 15:03:58 +01:00
Vitaly Lipatov f8562ace96 wineconsole: Fix Russian translation. 2010-01-19 15:03:58 +01:00
Mike Kaplinskiy 8e669d9a61 server: Activate pending asyncs on a hangup/error. 2010-01-19 15:03:57 +01:00
Julius Schwartzenberg 65f6474c6c avifil32: Allow files with different extensions to be loaded. 2010-01-19 15:03:57 +01:00
Alexandre Julliard 4e640f8a2b winedump: Remove an unused flag. 2010-01-19 15:03:56 +01:00
Rob Shearman c66972dfba rpcrt4: Add structure definition for RPC AUTH3 packet and use the size of this on sending to fix authentication against native servers.
Also use the new size to validate incoming AUTH3 packets to be
consistent with native.
2010-01-19 15:03:56 +01:00
Austin English 7222e8b665 winecoreaudio.drv: Reorder includes to avoid OS X bug. 2010-01-19 15:03:55 +01:00
Nikolay Sivov 5f72a88590 msxml3: Implement IXMLDOMComment::deleteData() with tests. 2010-01-19 15:03:54 +01:00
Michael Stefaniuc dfc4f8e5f1 dmband: Avoid newlines inside FIXME messages. 2010-01-19 15:03:54 +01:00
Christian Costa ecbeda64dd d3drm: Add definitions for IDirect3DRMFace. 2010-01-19 12:43:32 +01:00
Christian Costa 815e579977 d3drm: Add definitions for IDirect3DRMShadow and IDirect3DRMShadow2. 2010-01-19 12:43:32 +01:00
Christian Costa 79a6c036af d3drm: Add definitions for IDirect3DRMProgressiveMesh. 2010-01-19 12:43:32 +01:00
Christian Costa 6a41b3fe60 d3drm: Add definitions for IDirect3DRMMesh. 2010-01-19 12:43:32 +01:00
Rob Shearman d9b83e8bb2 widl: Add support for character constants in expressions. 2010-01-19 12:43:31 +01:00
Rob Shearman 3fecf9ddcd wpp: Fix expansion of macro bodies following the parsing of a numerical digit.
The current regular expression causes all letters and spaces (among
other characters) following the appearance of a digit to be classed as
a literal, including C identifiers which may need to be expanded.

The expression was intended to catch the remaining characters that
were not covered by the first two rules ([^a-zA-Z0-9'"#/\\\n]+ and
{cident}), but the [^'"#/\\\n] expression caught {cident} as well.
While one solution would have been just to catch the expression that
match [a-zA-Z0-9]* that don't match {cident}, i.e. [0-9][a-zA-Z0-9]*,
in the interests of avoiding unnecessary multiple LITERALs being
generated and then combined during parsing the expression also
includes the first expression, making it
[0-9][a-zA-Z0-9]*[^a-zA-Z0-9'"#/\\\n]*.
2010-01-19 12:43:30 +01:00
Damjan Jovanovic 226998185f sti: Add launch application registry. 2010-01-19 12:43:30 +01:00
Jörg Höhle ac1ad1372d wine.inf: Correct MCI entries. 2010-01-19 12:43:30 +01:00
Nikolay Sivov f9c51f8de9 xmllite: Add stub implementation of IXmlReader interface. 2010-01-19 12:43:30 +01:00
Nikolay Sivov 80a546cad5 xmllite/tests: Add basic test structure for IXmlReader. 2010-01-19 12:43:25 +01:00
Nikolay Sivov ea762fd2a4 include: Add IXmlReader interface definition. 2010-01-19 12:25:09 +01:00
Nikolay Sivov ff992282aa msxml3: Use a helper to check for created content handler. 2010-01-19 12:21:48 +01:00
Nikolay Sivov 7724b053e2 msxml3: Implement IXMLDOMElement::removeAttribute(). 2010-01-19 12:21:30 +01:00
Ilya Shpigor 91a1321a97 gdi32: Additional checking in the test for font creation with the OEM charset. 2010-01-19 12:21:15 +01:00
Alexandre Julliard 3b67ad9bd4 ntdll: Fix the NtCreateEvent prototype.
It takes an event type, not a manual reset flag.
2010-01-18 20:34:54 +01:00
Maarten Lankhorst 6299544cdd mmdevapi: Dump device id in test. 2010-01-18 15:47:30 +01:00
Maarten Lankhorst abd9627d92 mmdevapi: Add code to enumerate NOTPRESENT devices. 2010-01-18 15:47:25 +01:00
Andrew Nguyen aef39f3d9f mapi32/tests: Centralize property function pointer initialization. 2010-01-18 15:34:44 +01:00
Andrew Nguyen b69045bfc7 mapi32/tests: Fix the PropCopyMore tests and add an additional test.
The PropCopyMore test function was incorrectly allocating memory and
testing property types without initializing the correct property union
member, causing a crash with the native Outlook extended MAPI
provider.
2010-01-18 15:34:32 +01:00
Andrew Nguyen 9996897c51 mapi32/tests: Report skip for MAPIGetDefaultMalloc. 2010-01-18 15:34:16 +01:00
Andrew Nguyen 4904e31133 mapi32/tests: Report skips for unavailable utility functions. 2010-01-18 15:34:11 +01:00