ChangeSet ID: 6546
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 13:09:45
Modified files:
include : winuser.h
dlls/user : user32.spec exticon.c
Log message:
Rolf Kalbermatter <rolf.kalbermatter(a)citeng.com>
- Modify ICO_ExtractIconExW to:
return more compliant values for usage in PrivateExtractIcons and PrivateExtractIconEx
accept and fill in the icon identifier array correctly if provided
allow to retrieve both small and large icons together.
- Simplify PrivateExtraxtIcons
- Modify PrivateExtractIconExW to:
use compatible signature to ExtractIconEx in shell32 which it really is directly
as tested on W2K by calling both functions with the same parameters
directly call internal extraction function
fix error when requesting 1 icon for both sizes
Patch: http://cvs.winehq.com/patch.py?id=6546
Old revision New revision Changes Path
1.154 1.155 +2 -0 wine/include/winuser.h
1.64 1.65 +2 -2 wine/dlls/user/user32.spec
1.23 1.24 +94 -96 wine/dlls/user/exticon.c
ChangeSet ID: 6545
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 13:07:59
Modified files:
dlls/comctl32 : trackbar.c comctl32.h
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
Get rid of generic notification support in comctrl32. The MS docs were
misleading in that all controls send these notifications. They don't.
Patch: http://cvs.winehq.com/patch.py?id=6545
Old revision New revision Changes Path
1.44 1.45 +5 -7 wine/dlls/comctl32/trackbar.c
1.19 1.20 +0 -128 wine/dlls/comctl32/comctl32.h
ChangeSet ID: 6543
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/10 13:06:51
Modified files:
dlls/winmm/wineoss: audio.c
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Reset the oss device before we try to close it. Fixes hang on startup
of Starcraft due to oss device being in a bad state.
Patch: http://cvs.winehq.com/patch.py?id=6543
Old revision New revision Changes Path
1.65 1.66 +6 -1 wine/dlls/winmm/wineoss/audio.c
ChangeSet ID: 6525
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/06 17:20:31
Modified files:
dlls/wininet : http.c
Log message:
Alberto Massari <alby(a)exln.com>
- When sending a request using HttpOpenRequest/HttpSendRequest, send the
User-Agent header; fixed the Accept and the Referer header handling to
really work.
- Fixed bug in the HTTP_ProcessHeader: when a second value was supposed to be
added to an existing one, the buffer was reduced to be 1 char long instead
of being expanded, due to the precedence rules of the operator '?'.
- Added support for opening URLs that redirect to a different place.
Patch: http://cvs.winehq.com/patch.py?id=6525
Old revision New revision Changes Path
1.31 1.32 +149 -13 wine/dlls/wininet/http.c
ChangeSet ID: 6523
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/06 17:19:21
Modified files:
dlls/winsock : socket.c
Log message:
Christoph Frick <frick(a)SC-Networks.de>
Force (WS_)SO_REUSEADDR before binding to a socket; ignore
(WS_)SO_DONTROUTE; Network games in Grand Prix Legends and Nascar 2002
are possible now.
Patch: http://cvs.winehq.com/patch.py?id=6523
Old revision New revision Changes Path
1.115 1.116 +17 -0 wine/dlls/winsock/socket.c