ChangeSet ID: 16368
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/03/01 04:44:15
Modified files:
dlls/comctl32 : rebar.c
Log message:
Robert Shearman <rob(a)codeweavers.com>
- Make row number be zero-based.
- Improvements to dumping functions to not dump out fields that may
not have been filled in.
Patch: http://cvs.winehq.org/patch.py?id=16368
Old revision New revision Changes Path
1.102 1.103 +19 -7 wine/dlls/comctl32/rebar.c
ChangeSet ID: 16366
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/03/01 04:43:19
Modified files:
dlls/x11drv : dib.c bitmap.c
Log message:
Huw Davies <huw(a)codeweavers.com>
If the dibsection is based on a file-mapping object, then make sure
that the section is in sync when the dibsection is deleted.
Patch: http://cvs.winehq.org/patch.py?id=16366
Old revision New revision Changes Path
1.22 1.23 +3 -0 wine/dlls/x11drv/dib.c
1.7 1.8 +1 -1 wine/dlls/x11drv/bitmap.c
ChangeSet ID: 16362
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/03/01 04:41:25
Modified files:
dlls/ole32 : stg_prop.c
Log message:
Juan Lang <juan_lang(a)yahoo.com>
Move vtbl to end of file and get rid of unnecessary prototypes.
Patch: http://cvs.winehq.org/patch.py?id=16362
Old revision New revision Changes Path
1.2 1.3 +35 -147 wine/dlls/ole32/stg_prop.c
ChangeSet ID: 16360
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/03/01 04:39:49
Modified files:
dlls/dbghelp : stabs.c pe_module.c module.c elf_module.c
dbghelp_private.h dbghelp.c
Log message:
Eric Pouech <pouech-eric(a)wanadoo.fr>
Memory consumption optimization while loading ELF debug info:
- don't map twice an ELF file for symbol lookup (in non deferred mode)
- no longer entirely map an ELF file into memory, but only the
sections we need.
Added support for loading ELF modules thru SymLoadModule in a non life
process.
Factorisation of code for ELF module handling.
Fixes to ELF symbol loading
- drops symbols from symtab which are neither funcs nor global
variables
- fixes some incorrect size computation for latest GCC versions.
Several cleanups and fixes.
Patch: http://cvs.winehq.org/patch.py?id=16360
Old revision New revision Changes Path
1.14 1.15 +33 -21 wine/dlls/dbghelp/stabs.c
1.9 1.10 +17 -13 wine/dlls/dbghelp/pe_module.c
1.8 1.9 +44 -10 wine/dlls/dbghelp/module.c
1.14 1.15 +433 -233 wine/dlls/dbghelp/elf_module.c
1.13 1.14 +5 -2 wine/dlls/dbghelp/dbghelp_private.h
1.7 1.8 +11 -20 wine/dlls/dbghelp/dbghelp.c