ChangeSet ID: 12039
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/04/18 22:05:07
Modified files:
dlls/ntdll : rtlstr.c
dlls/kernel : locale.c
Log message:
Fixed ntdll_wcstoumbs and WideCharToMultiByte to set the 'used' flag
for UTF-8 codepage too. This was causing DIR_nt_to_unix to fail in
some cases (tracked down with help from Alex Pasadyn).
Patch: http://cvs.winehq.org/patch.py?id=12039
Old revision New revision Changes Path
1.44 1.45 +5 -4 wine/dlls/ntdll/rtlstr.c
1.40 1.41 +1 -0 wine/dlls/kernel/locale.c
ChangeSet ID: 12037
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/04/18 21:59:22
Modified files:
dlls/dinput : joystick_linuxinput.c
Log message:
Christoph Frick <frick(a)sc-networks.de>
- added code to have the joystick state be set to the assumed center
values of the joystick mapped to the range the application wants
them
- generate events after setting the apropiate values in This->js
- replaced magic ints with defines from linux/input.h
- removed mapping code that generated wrong values for axes, that have
the center on the min or max
Patch: http://cvs.winehq.org/patch.py?id=12037
Old revision New revision Changes Path
1.2 1.3 +43 -25 wine/dlls/dinput/joystick_linuxinput.c
ChangeSet ID: 12035
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/04/18 21:58:28
Modified files:
dlls/dbghelp : type.c symbol.c stabs.c msc.c dbghelp_private.h
dbghelp.c
Log message:
Eric Pouech <pouech-eric(a)wanadoo.fr>
- implemented support for function debug start/stop and labels (msc.c
and stabs.c)
- started implementing typedef support
- functions now have a real function signature (only in stabs.c, still
to be done in msc.c)
- small enhancements to TI_GET_TYPE for functions
- added support for functions' block and local variables in registers
(msc.c)
- fixed some bugs in StackWalk
- constants are now stored as variants (instead of unsigned ints)
- fixed regular expression management (dbghelp's RE are not the same
as POSIX ones)
Patch: http://cvs.winehq.org/patch.py?id=12035
Old revision New revision Changes Path
1.1 1.2 +125 -43 wine/dlls/dbghelp/type.c
1.1 1.2 +136 -36 wine/dlls/dbghelp/symbol.c
1.2 1.3 +38 -10 wine/dlls/dbghelp/stabs.c
1.1 1.2 +204 -28 wine/dlls/dbghelp/msc.c
1.1 1.2 +29 -7 wine/dlls/dbghelp/dbghelp_private.h
1.1 1.2 +5 -6 wine/dlls/dbghelp/dbghelp.c