ChangeSet ID: 18820
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/07/11 08:30:23
Modified files:
server : winstation.c window.c user.h queue.c
Log message:
Tie windows and thread input structures to a specific desktop.
Support multiple desktop windows (one per desktop object).
Use the window desktop to find the window station to use for property
atoms.
Patch: http://cvs.winehq.org/patch.py?id=18820
Old revision New revision Changes Path
1.8 1.9 +8 -2 wine/server/winstation.c
1.59 1.60 +74 -55 wine/server/window.c
1.35 1.36 +4 -1 wine/server/user.h
1.66 1.67 +30 -12 wine/server/queue.c
ChangeSet ID: 18819
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/07/11 08:23:31
Modified files:
dlls/ntdll : loadorder.c
Log message:
Also look for the plain module specification in WINEDLLOVERRIDES for
modules that contain a path, for better consistency with the registry
entries.
Patch: http://cvs.winehq.org/patch.py?id=18819
Old revision New revision Changes Path
1.17 1.18 +8 -0 wine/dlls/ntdll/loadorder.c
ChangeSet ID: 18818
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/07/11 08:22:24
Modified files:
include : msi.h
dlls/msi : source.c files.c
Log message:
Aric Stewart <aric(a)codeweavers.com>
Add the string constants located in msi.h and make use of them in
files.c and source.c.
Patch: http://cvs.winehq.org/patch.py?id=18818
Old revision New revision Changes Path
1.24 1.25 +201 -0 wine/include/msi.h
1.1 1.2 +27 -34 wine/dlls/msi/source.c
1.6 1.7 +8 -10 wine/dlls/msi/files.c
ChangeSet ID: 18814
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/07/11 08:20:40
Modified files:
dlls/ntdll : heap.c
dlls/kernel/tests: heap.c
Log message:
Robert Shearman <rob(a)codeweavers.com>
- Make the value returned from HeapSize always match the requested
size passed into HeapAllocate/HeapReAllocate.
- Add a test for this behaviour.
Patch: http://cvs.winehq.org/patch.py?id=18814
Old revision New revision Changes Path
1.41 1.42 +23 -17 wine/dlls/ntdll/heap.c
1.5 1.6 +9 -0 wine/dlls/kernel/tests/heap.c