| 1 | /* $Id: changelog,v 1.1830 2001-11-14 18:55:30 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
|
|---|
| 5 | o Removed unnecessary string copy operation changes (heap -> stack)
|
|---|
| 6 | Performance improvement is minimal at best and stack
|
|---|
| 7 | corruption is MUCH harder to locate than heap corruption.
|
|---|
| 8 |
|
|---|
| 9 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 10 | - fastdep: o IPF support.
|
|---|
| 11 |
|
|---|
| 12 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 13 | - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
|
|---|
| 14 | ... which operate on stack only (STACK_strdupXXX)
|
|---|
| 15 | This could slightly reduce heap pressure.
|
|---|
| 16 | - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
|
|---|
| 17 |
|
|---|
| 18 | 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 19 | - KERNEL32: o Added missing entry in debug log table for hmparport
|
|---|
| 20 | (fixes crash in debug build with selective logging)
|
|---|
| 21 | - GDI32: o CalcBitmapSize bugfix
|
|---|
| 22 | o SetDIBitsToDevice workaround for bug in Matrox driver.
|
|---|
| 23 | When blitting 32 bpp data, the GpiDrawBits call will
|
|---|
| 24 | fail with an insufficient memory error. When that happens,
|
|---|
| 25 | convert data to 24 bpp and try again.
|
|---|
| 26 | (TODO: This can happen in more functions!!)
|
|---|
| 27 | o Fixes for wrong bit masks in several functions (24 & 32 bpp)
|
|---|
| 28 | o Refuse DeleteObject for DEFAULT_GUI_FONT handle
|
|---|
| 29 |
|
|---|
| 30 | 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 31 | - ODINWRAP: o improved thread call path tracking
|
|---|
| 32 | (now collects i. e. HEAP_malloc->HeapAlloc paths)
|
|---|
| 33 |
|
|---|
| 34 | 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 35 | - USER32: o Fix for calculating font size for a dialog box
|
|---|
| 36 |
|
|---|
| 37 | 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
|
|---|
| 38 | - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
|
|---|
| 39 | (Build breaker. Seems like someone has an old toolkit...)
|
|---|
| 40 |
|
|---|
| 41 | 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 42 | - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
|
|---|
| 43 |
|
|---|
| 44 | 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 45 | - COMCTL32: o Ported latest Wine property sheet control
|
|---|
| 46 | (fixes some, but not all problems in CVP)
|
|---|
| 47 |
|
|---|
| 48 | 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 49 | - KERNEL32: o first shot at parport support
|
|---|
| 50 |
|
|---|
| 51 | 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 52 | - USER32: o EndDialog fix for MFC dialog windows
|
|---|
| 53 | o static control fix: SS_CENTERIMAGE means fill remainder
|
|---|
| 54 | of client area with upper left pixel of bitmap
|
|---|
| 55 | - KERNEL32: o Fix for applications that use CreateFile to open
|
|---|
| 56 | a named pipe
|
|---|
| 57 |
|
|---|
| 58 | 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 59 | - WININET: o http, internet: WINE sync
|
|---|
| 60 |
|
|---|
| 61 | 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 62 | - KERNEL32: o Call old DosOpen if DosOpenL not available
|
|---|
| 63 |
|
|---|