ChangeSet ID: 6743
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/19 15:11:54
Modified files:
ole : ole2nls.c
include : winnls.h
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
GetDateFormat() and GetTimeFormat() should check the validity of the
time/date structure it is processing.
Add comments to describe flags behavior.
Add support for TIME_FORCE24HOURFORMAT, TIME_NOMINUTESORSECONDS,
TIME_NOSECONDS and TIME_NOTIMEMARKER.
Add check in GetDateFormatW() for invalid flag combinations.
Added some missing DATE_* defines to winnls.h.
Behavior verified against NT4.0.
Patch: http://cvs.winehq.com/patch.py?id=6743
Old revision New revision Changes Path
1.110 1.111 +213 -46 wine/ole/ole2nls.c
1.37 1.38 +4 -0 wine/include/winnls.h
ChangeSet ID: 6732
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/18 22:10:35
Modified files:
ole : ole2nls.c
Log message:
Alberto Massari <alby(a)exln.com>
CompareStringW should return 0 when one of the provided strings is a
NULL pointer.
Patch: http://cvs.winehq.com/patch.py?id=6732
Old revision New revision Changes Path
1.109 1.110 +5 -0 wine/ole/ole2nls.c
ChangeSet ID: 6728
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/18 19:04:12
Modified files:
dlls/netapi32/tests: wksta.c apibuf.c access.c
Log message:
Francois Gouget <fgouget(a)free.fr>
On Win9x netapi32.dll does not export a single API so we do a
GetProcAddress for each of them and skip the tests when necessary.
On Win9x GetUserNameW and GetComputerNameW are stubs.
Improve error reporting in access.c.
Patch: http://cvs.winehq.com/patch.py?id=6728
Old revision New revision Changes Path
1.3 1.4 +46 -32 wine/dlls/netapi32/tests/wksta.c
1.1 1.2 +28 -11 wine/dlls/netapi32/tests/apibuf.c
1.1 1.2 +53 -27 wine/dlls/netapi32/tests/access.c
ChangeSet ID: 6727
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2002/12/18 19:03:48
Modified files:
include : winbase.h
dlls/kernel/tests: alloc.c
Log message:
Francois Gouget <fgouget(a)free.fr>
Declare LocalDiscard and GlobalDiscard (used by kernel/tests/alloc.c)
Remove the DISCARD_DEFINED #ifdefs.
Remove another double HeapFree (caused an assert when run on NT4),
and a HeapSize on a freed heap (the test failed on Win9x).
Fix the LocalLock/LocalUnlock tests (the memory must be allocated
with LMEM_MOVEABLE otherwise the tests don't make sense).
Remove many unnecessary casts.
Improved error reporting somewhat.
Patch: http://cvs.winehq.com/patch.py?id=6727
Old revision New revision Changes Path
1.174 1.175 +6 -0 wine/include/winbase.h
1.6 1.7 +38 -65 wine/dlls/kernel/tests/alloc.c