[7367] | 1 | /* $Id: changelog,v 1.1836 2001-11-16 16:29:43 sandervl Exp $ */
|
---|
[6074] | 2 |
|
---|
[7363] | 3 | 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
|
---|
| 5 | - USER32: o Disallow nested calls to SetScrollRange. This is most likely
|
---|
| 6 | not the right fix, but it works so far without negative side
|
---|
| 7 | effects.
|
---|
| 8 | (fixes crash in CVP listview with 4+ items)
|
---|
[7367] | 9 | - GDI32: o Removed line draw speedup. If I have to choose between
|
---|
| 10 | a performance loss of a few clock cycles and a code size
|
---|
| 11 | increase of 2k, I prefer the 1st option.
|
---|
[7363] | 12 |
|
---|
[7356] | 13 | 2001-11-16: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 14 | - ODINWRAP: o don't generate any frame procedure for RELEASE build
|
---|
| 15 | anymore (even no FS: wrapper (meanwhile superfluous))
|
---|
| 16 | -> significant performance gain for logged micro functions
|
---|
| 17 | - KERNEL32: o heap speedup (30%)
|
---|
[7362] | 18 | - GDI32: o minor line drawing speedup
|
---|
[7356] | 19 |
|
---|
[7350] | 20 | 2001-11-14: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 21 | - KERNEL32: o fixed infinite loop in PE loader for corrupted or
|
---|
| 22 | misinterpreted PE images (Opera 6)
|
---|
[7352] | 23 | - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
|
---|
[7350] | 24 |
|
---|
[7344] | 25 | 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 26 | - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
|
---|
| 27 | o Removed unnecessary string copy operation changes (heap -> stack)
|
---|
| 28 | Performance improvement is minimal at best and stack
|
---|
| 29 | corruption is MUCH harder to locate than heap corruption.
|
---|
| 30 |
|
---|
[7339] | 31 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
---|
[7341] | 32 | - fastdep: o IPF support.
|
---|
| 33 |
|
---|
| 34 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
---|
[7339] | 35 | - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
|
---|
| 36 | ... which operate on stack only (STACK_strdupXXX)
|
---|
| 37 | This could slightly reduce heap pressure.
|
---|
| 38 | - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
|
---|
| 39 |
|
---|
[7329] | 40 | 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 41 | - KERNEL32: o Added missing entry in debug log table for hmparport
|
---|
| 42 | (fixes crash in debug build with selective logging)
|
---|
| 43 | - GDI32: o CalcBitmapSize bugfix
|
---|
| 44 | o SetDIBitsToDevice workaround for bug in Matrox driver.
|
---|
| 45 | When blitting 32 bpp data, the GpiDrawBits call will
|
---|
| 46 | fail with an insufficient memory error. When that happens,
|
---|
| 47 | convert data to 24 bpp and try again.
|
---|
| 48 | (TODO: This can happen in more functions!!)
|
---|
| 49 | o Fixes for wrong bit masks in several functions (24 & 32 bpp)
|
---|
[7331] | 50 | o Refuse DeleteObject for DEFAULT_GUI_FONT handle
|
---|
[7329] | 51 |
|
---|
[7326] | 52 | 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 53 | - ODINWRAP: o improved thread call path tracking
|
---|
| 54 | (now collects i. e. HEAP_malloc->HeapAlloc paths)
|
---|
| 55 |
|
---|
[7324] | 56 | 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 57 | - USER32: o Fix for calculating font size for a dialog box
|
---|
| 58 |
|
---|
[7320] | 59 | 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
|
---|
| 60 | - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
|
---|
| 61 | (Build breaker. Seems like someone has an old toolkit...)
|
---|
| 62 |
|
---|
[7316] | 63 | 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 64 | - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
|
---|
| 65 |
|
---|
[7303] | 66 | 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 67 | - COMCTL32: o Ported latest Wine property sheet control
|
---|
| 68 | (fixes some, but not all problems in CVP)
|
---|
| 69 |
|
---|
[7299] | 70 | 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 71 | - KERNEL32: o first shot at parport support
|
---|
| 72 |
|
---|
[7292] | 73 | 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 74 | - USER32: o EndDialog fix for MFC dialog windows
|
---|
[7295] | 75 | o static control fix: SS_CENTERIMAGE means fill remainder
|
---|
| 76 | of client area with upper left pixel of bitmap
|
---|
[7292] | 77 | - KERNEL32: o Fix for applications that use CreateFile to open
|
---|
| 78 | a named pipe
|
---|
| 79 |
|
---|
[7291] | 80 | 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 81 | - WININET: o http, internet: WINE sync
|
---|
| 82 |
|
---|
[7285] | 83 | 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 84 | - KERNEL32: o Call old DosOpen if DosOpenL not available
|
---|
| 85 |
|
---|