ChangeSet ID: 12434
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/05/21 22:15:04
Modified files:
server : fd.c
Log message:
Make sure we don't truncate the file on open before we have checked
the sharing modes (thanks to Dmitry Timoshkov for the test case).
Patch: http://cvs.winehq.org/patch.py?id=12434
Old revision New revision Changes Path
1.20 1.21 +2 -1 wine/server/fd.c
ChangeSet ID: 12433
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/05/21 22:14:17
Modified files:
dlls/kernel/tests: file.c
Log message:
Dmitry Timoshkov <dmitry(a)codeweavers.com>
Add a test for opening an already opened file for writing in a not
compatible sharing mode.
Patch: http://cvs.winehq.org/patch.py?id=12433
Old revision New revision Changes Path
1.38 1.39 +32 -2 wine/dlls/kernel/tests/file.c
ChangeSet ID: 12431
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/05/21 15:58:44
Modified files:
include/wine : list.h
dlls/ntdll : virtual.c
dlls/kernel/tests: virtual.c
dlls/kernel : virtual.c
Log message:
Converted the memory views list to use the standard functions from
wine/list.h.
Restructured some functions to always return proper NT status codes.
A couple of optimizations.
Added a few tests for file mappings.
Patch: http://cvs.winehq.org/patch.py?id=12431
Old revision New revision Changes Path
1.1 1.2 +20 -8 wine/include/wine/list.h
1.31 1.32 +317 -324 wine/dlls/ntdll/virtual.c
1.2 1.3 +155 -0 wine/dlls/kernel/tests/virtual.c
1.2 1.3 +2 -0 wine/dlls/kernel/virtual.c
ChangeSet ID: 12429
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/05/21 15:53:45
Modified files:
dlls/winmm/tests: winmm_test.h wave.c capture.c
Log message:
Robert Reif <reif(a)earthlink.net>
Fixed a bug I introduced in waveInGetDevCapsA(WAVE_MAPPER) test.
Moved format structure array to header file and restored
NB_WIN_FORMATS macro to calculate array size.
Added more error results and used macro as suggested by Andreas Mohr.
Cleaned up error result printing to be more consistent.
Patch: http://cvs.winehq.org/patch.py?id=12429
Old revision New revision Changes Path
1.1 1.2 +24 -3 wine/dlls/winmm/tests/winmm_test.h
1.24 1.25 +47 -61 wine/dlls/winmm/tests/wave.c
1.1 1.2 +24 -22 wine/dlls/winmm/tests/capture.c