ChangeSet ID: 20889
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)winehq.org 2005/10/27 13:28:43
Modified files:
dlls/gdi/enhmfdrv: bitblt.c
dlls/gdi : font.c dc.c clipping.c
Log message:
Phil Krylov <phil(a)newstar.rinet.ru>
Fixed SetTextAlign(), SetBkMode(), SetROP2(), SetPolyFillMode(), and
SetStretchBltMode() to assume that the corresponding DC driver
functions return only a BOOL success flag, and therefore a proper
return value should be generated by the main function. Fixed
EMFDRV_StretchDIBits() to return a proper value (like
MFDRV_StretchDIBits already does). Added comments about other cases of
improper return values.
Patch: http://cvs.winehq.org/patch.py?id=20889
Old revision New revision Changes Path
1.7 1.8 +1 -1 wine/dlls/gdi/enhmfdrv/bitblt.c
1.21 1.22 +3 -0 wine/dlls/gdi/font.c
1.10 1.11 +24 -26 wine/dlls/gdi/dc.c
1.7 1.8 +9 -0 wine/dlls/gdi/clipping.c
ChangeSet ID: 20887
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)winehq.org 2005/10/27 07:39:28
Modified files:
dlls/msi : custom.c action.c
Log message:
Mike McCormack <mike(a)codeweavers.com>
If an action fails, print out its name as well as the error code. Use
%d for error codes so it's easy to match them up to something in
winerror.h.
Patch: http://cvs.winehq.org/patch.py?id=20887
Old revision New revision Changes Path
1.29 1.30 +10 -10 wine/dlls/msi/custom.c
1.215 1.216 +1 -1 wine/dlls/msi/action.c
ChangeSet ID: 20883
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)winehq.org 2005/10/27 07:25:04
Modified files:
dlls/msi : table.c msipriv.h database.c
Log message:
Mike McCormack <mike(a)codeweavers.com>
Implement transforms. This still includes some debugging code which
can be enabled by setting debug_transform to 1 in the relevant
places.
Patch: http://cvs.winehq.org/patch.py?id=20883
Old revision New revision Changes Path
1.47 1.48 +364 -29 wine/dlls/msi/table.c
1.101 1.102 +2 -0 wine/dlls/msi/msipriv.h
1.8 1.9 +2 -0 wine/dlls/msi/database.c