Jacek Caban
998b4653c9
urlmon: Call ReportProgress(BINDSTATUS_ACCEPTRANGES) in https handler.
2009-01-13 15:28:47 +01:00
Jacek Caban
12931062fb
wininet: Make sure that we have data buffered before sending INTERNET_STATUS_REQUEST_COMPLETE notification.
2009-01-13 15:28:39 +01:00
Michael Stefaniuc
49177a0958
dmime: Remove superfluous pointer casts.
2009-01-13 15:26:23 +01:00
Michael Stefaniuc
68eb63a4fa
dmusic: Remove superfluous pointer casts.
2009-01-13 15:26:19 +01:00
Michael Stefaniuc
934ed50d49
version: Remove superfluous pointer casts.
2009-01-13 15:26:16 +01:00
Michael Stefaniuc
e202baabd5
user32/tests: Do not cast the (IDC|IDI|RT)_* defines to LPSTR.
2009-01-13 15:26:11 +01:00
Michael Stefaniuc
898d795fdd
wintrust/tests: Remove superfluous pointer casts.
2009-01-13 15:26:04 +01:00
Michael Stefaniuc
2fc7b81009
advapi32/tests: Remove superfluous pointer casts.
2009-01-13 15:26:00 +01:00
Michael Stefaniuc
7eb3abc1c1
uxtheme: Remove superfluous pointer casts.
2009-01-13 15:25:55 +01:00
Michael Stefaniuc
2b9c8433b2
dmstyle: Remove superfluous pointer casts.
2009-01-13 15:25:52 +01:00
Michael Stefaniuc
d62a0eec7b
dmscript: Remove superfluous pointer casts.
2009-01-13 15:25:48 +01:00
Michael Stefaniuc
16042cff7b
rsaenh: Remove superfluous pointer casts.
2009-01-13 15:25:46 +01:00
Michael Stefaniuc
4b50a4c670
dmloader: Remove superfluous pointer casts.
2009-01-13 15:25:43 +01:00
Michael Stefaniuc
d576c2d934
wldap32: Remove superfluous pointer casts.
2009-01-13 15:25:41 +01:00
Michael Stefaniuc
f7c133284b
devenum: Remove superfluous pointer casts.
2009-01-13 15:25:38 +01:00
Michael Stefaniuc
b5e905a622
wsock32: Remove superfluous pointer casts.
2009-01-13 15:25:35 +01:00
Henri Verbeet
a37782595f
wined3d: Fix cube texture creation error handling.
2009-01-13 15:20:56 +01:00
Henri Verbeet
d030cbdad2
wined3d: Fix volume texture creation error handling.
2009-01-13 15:20:52 +01:00
Henri Verbeet
99d3c62163
wined3d: Fix surface creation error handling.
2009-01-13 15:20:44 +01:00
Henri Verbeet
2654a148de
wined3d: Fix texture creation error handling.
...
Doing the levels calculation before the object is created prevents leaking
resources and avoids changing baseTexture.levels after it's been initialized
by basetexture_init().
2009-01-13 15:20:38 +01:00
Henri Verbeet
e4cfbdd4f7
wined3d: Get rid of D3DCREATERESOURCEOBJECTINSTANCE.
2009-01-13 15:20:28 +01:00
Alexandre Julliard
7d9b745391
user32/tests: Only display failing message sequences instead of every single message.
2009-01-12 21:51:01 +01:00
Alexandre Julliard
a26857da31
user32/tests: Centralize the tracing of the received messages in the msg.c test.
2009-01-12 21:03:57 +01:00
Alexandre Julliard
6b4ed0faae
configure: Don't force a 32-bit build when cross-compiling.
2009-01-12 19:32:16 +01:00
Austin English
8cf8e2c60a
httpapi: Add stub dll.
2009-01-12 16:53:18 +01:00
Austin Lund
c607ab96b6
riched20/tests: Added ITextServices::TxSetText test.
2009-01-12 16:53:18 +01:00
Hwang YunSong(황윤성)
e90c8f53e2
cryptui: New Korean resource.
2009-01-12 16:53:18 +01:00
Andrey Turkin
c0f4fc4978
programs: Add cacls stub.
2009-01-12 16:53:18 +01:00
Michael Karcher
1c56d293f0
widl: Dereference operator in expr works on any declared pointer.
2009-01-12 16:53:18 +01:00
Michael Karcher
f80e4aa9d2
widl: Don't forget conformance info on [iid_is] void pointers.
2009-01-12 16:53:18 +01:00
Michael Karcher
8092e85ece
widl: Fix handling of [local] functions without [call_as].
2009-01-12 16:53:18 +01:00
Paul Vriens
110f2c2cd9
crypt32/tests: Make tests run on some Win9x boxes again.
2009-01-12 15:26:05 +01:00
Alexandre Julliard
dfa66db214
configure: Improve error reporting for missing 32-bit development environment.
2009-01-12 15:25:44 +01:00
Alexandre Julliard
c31a36412c
makedep: Copy the makefile to append dependencies instead of truncating in place.
2009-01-12 14:43:15 +01:00
Dylan Smith
f885d40d67
richedit: Store mouse captured state rather than calling GetCapture.
...
Windowless richedit control will not be able to call GetCapture without
a handle to the host window (and there is no ITextHost_TxGetCapture
method), but there is a ITextHost_TxSetCapture method available for
setting and releasing the capture on the mouse. This means that the
richedit control will need to keep track of whether it has captured the
mouse or not to implement windowless richedit controls.
2009-01-12 14:42:02 +01:00
Dylan Smith
ee19ec056a
richedit: Prevent an unsigned integer underflow.
2009-01-12 14:40:30 +01:00
Dylan Smith
8089d980d1
richedit: Set bEmulateVersion10 initially to avoid retroactive changes.
...
Previously the WM_NCCREATE was handled by the as if it was always for
later versions, then the window proc for version 1.0 would make
appropriate changes afterwards. Instead both versions should call the
same function (e.g. ME_MakeEditor) and provide the value for
bEmulateVersion10 to make the code clearer.
2009-01-12 14:40:11 +01:00
Dylan Smith
603be645d2
richedit: Pressing enter adds newline on WM_KEYDOWN rather than WM_CHAR.
2009-01-12 14:39:42 +01:00
Dylan Smith
576ff4b104
richedit: Tested EM_CHARFROMPOS with position outside of control.
2009-01-12 14:38:57 +01:00
Dylan Smith
55d9e95892
richedit: Added tests for autoscrolling options based on WS_V/HSCROLL.
2009-01-12 14:38:36 +01:00
Dylan Smith
a1aaf97c11
richedit: Added tests to show that options are stored internally.
2009-01-12 14:38:17 +01:00
Andrey Turkin
d2685e7bd7
ntdll: Add RtlCaptureStackBackTrace stub.
2009-01-12 14:37:57 +01:00
Andrey Turkin
a0f681ad4c
ntoskrnl: Add version resource.
2009-01-12 14:37:40 +01:00
Andrey Turkin
86635b3c48
loadperf: Add LoadPerfCounterTextStrings stubs.
2009-01-12 14:37:18 +01:00
Christian Costa
2322a06dd6
mciavi: In MCI, RECT structure is used differently: rc.right = width & rc.bottom = height so do the conversion when needed.
2009-01-12 14:37:12 +01:00
Chris Wulff
10637b4f0d
gdiplus: Implement hatch brush accessor functions.
2009-01-12 14:36:41 +01:00
Chris Wulff
a2a94a49bc
gdiplus: Partial implementation of GdipCreateHatchBrush.
2009-01-12 14:36:37 +01:00
Ge van Geldorp
f9f2e91198
msi/tests: Opening package with relative filename sometimes succeeds on Windows.
2009-01-12 14:34:51 +01:00
Henri Verbeet
07f9991062
dsound: Const correctness fixes.
2009-01-12 13:22:14 +01:00
Henri Verbeet
b069321650
wined3d: Fix and unify shader creation error handling.
2009-01-12 13:22:07 +01:00