ChangeSet ID: 6592
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/12 16:23:55
Modified files:
tools/wrc : wrc.c
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
Do not display the long options in the usage message if we don't
actually support them. Small other cleanups.
Patch: http://cvs.winehq.com/patch.py?id=6592
Old revision New revision Changes Path
1.20 1.21 +8 -8 wine/tools/wrc/wrc.c
ChangeSet ID: 6590
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/12 16:23:15
Modified files:
dlls/winmm/wavemap: wavemap.c
dlls/winmm/tests: wave.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
Fix error reporting in wavemap.c:wodOpen(); this solves the
waveOutOpen problem so that we can remove the todo_wine.
Win9x does not support WAVE_FORMAT_DIRECT.
Don't check the format if the waveOutOpen command failed.
Use trace, not winetest_trace!
Patch: http://cvs.winehq.com/patch.py?id=6590
Old revision New revision Changes Path
1.24 1.25 +2 -1 wine/dlls/winmm/wavemap/wavemap.c
1.2 1.3 +36 -39 wine/dlls/winmm/tests/wave.c
ChangeSet ID: 6584
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 21:56:09
Modified files:
dlls/kernel/tests: locale.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Don't test whether Get{Currency,Date,Number,Time}FormatA writes as
much as possible in the buffer even if it is too small. This is
undocumented and does not match the Win9x behavior.
Skip Unicode tests on Win9x.
Fix usage of memset/sizeof/COUNTOF.
Fix signed/unsigned warnings (in MSVC) by using lstrlenA instead of
strlen.
Patch: http://cvs.winehq.com/patch.py?id=6584
Old revision New revision Changes Path
1.7 1.8 +92 -82 wine/dlls/kernel/tests/locale.c
ChangeSet ID: 6581
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 21:54:23
Modified files:
dlls/kernel/tests: directory.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Skip the Unicode tests on Win9x.
Test Get{System,Windows}Directory{A,W}(NULL, 0). This is a more
standard way to get len_with_null too.
Adapt the error code checks to take into account variations between
Win9x and NT.
Patch: http://cvs.winehq.com/patch.py?id=6581
Old revision New revision Changes Path
1.3 1.4 +52 -18 wine/dlls/kernel/tests/directory.c
ChangeSet ID: 6580
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 21:54:01
Modified files:
files : file.c
dlls/kernel/tests: file.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Fix the error codes returned by DeleteFile{A,W} to match NT.
Adapt the DeleteFileA error code checks to take into account variations
between Win9x and NT.
Test DeleteFile(NULL).
Add tests for DeleteFileW.
On NT, calling _lclose on an already closed handle will cause memory
corruption and thus sometimes crash -> removed the relevant test.
Skip the Unicode tests when on Win9x.
Patch: http://cvs.winehq.com/patch.py?id=6580
Old revision New revision Changes Path
1.171 1.172 +2 -9 wine/files/file.c
1.11 1.12 +31 -7 wine/dlls/kernel/tests/file.c
ChangeSet ID: 6574
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/11 20:16:29
Modified files:
dlls/kernel/tests: codepage.c
Log message:
Francois Gouget <fgouget(a)free.fr>
The Win9x platforms support WideCharToMultiByte and
MultiByteToWideChar but not lstrcmpW! So I implemented our own so
that we can have a meaningful test.
Patch: http://cvs.winehq.com/patch.py?id=6574
Old revision New revision Changes Path
1.1 1.2 +15 -3 wine/dlls/kernel/tests/codepage.c