source: trunk/changelog@ 7467

Last change on this file since 7467 was 7467, checked in by phaller, 24 years ago

.

File size: 7.8 KB
RevLine 
[7467]1/* $Id: changelog,v 1.1858 2001-11-27 17:33:34 phaller Exp $ */
[6074]2
[7467]3 2001-11-27: Patrick Haller <patrick.haller@innotek.de>
4 - KERNEL32: o added \\.\ as standard symbolic link to the local namespace
5 This is the clean way for alternative device names,
6 local kludges in the device handlers should be avoided.
7 o fix in name resolver
8
[7460]9 2001-11-27: Sander van Leeuwen <sandervl@xs4all.nl>
10 - WSOCK32: o Missing FS wrapper macros added
[7462]11 - KERNEL32: o Accept \\.\COMx as name for COM ports
12 - USER32: o EnumChildWindow bugfix
[7460]13
[7455]14 2001-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
15 - KERNEL32: o Implemented CancelIo & GetOverlappedResult for serial comm
16 o Preliminary work on overlapped IO for serial comm
[7452]17
[7448]18 2001-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
19 - KERNEL32: o Custom build fix; check for double call for inittermKernel32
[7450]20 o More informative message when non-existing api is called.
21 Now displays dll + function name or ordinal.
[7448]22
[7441]23 2001-11-23: Patrick Haller <patrick.haller@innotek.de>
24 - KERNEL32: o minor work in parallel port support (ioctls)
25 o "Kernel Object Namespace" -> handlenames.cpp introduced
26 (yet inactive)
27
[7437]28 2001-11-23: knut st. osmundsen <kosmunds@csc.com>
29 - Misc. Makefiles: o Corrected the descriptions (on request from Ye][ow).
30
[7429]31 2001-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
32 - KERNEL32: o Check volume label during IOCTL_DISK_GET_DRIVE_GEOMETRY to
33 see if the media has been changed or removed.
34 o Implemented WriteFile & GetFileType for disk handles
35 (write currently only allowed for drive A)
[7432]36 - DSOUND: o Renamed DllGetClassObject & DllCanUnloadNow to avoid name
37 conflicts in the custom build.
[7429]38
[7424]39 2001-11-22: Patrick Haller <patrick.haller@innotek.de>
40 - ODINPROF: o initial version
41 PROFILE images using ODINCRTP generate a <pid>.prof file
42 (the optimized release build of ODINPROF should be used)
[7426]43 No source code modification required.
[7424]44 Problem: mapsym seems to corrupt kernel32.sym
[7434]45 - KERNEL32: o additions to parallel port support
[7424]46
[7411]47 2001-11-21: knut st. osmundsen <kosmunds@csc.com>
48 - src/makefile:
49 o Added guidlib to NOTDLLS.
50
[7407]51 2001-11-21: Sander van Leeuwen <sandervl@xs4all.nl>
52 - COMCTL32: o Tooltips bugfixes (wrong pointer used to free memory)
53 - USER32: o GetMenu: check that window menu is indeed a menu and not an id
54 (fixes failed assertion in ZOC)
55 o Groupbox fix: if text changes; erase top border + old text
56
[7402]57 2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>
58 - USER32: o Destroy CD notification window during dll unload
[7405]59 o Focus fix for dialog windows
60 Experiments in NT4 show that dialogs that are children don't
61 receive focus. Not sure if this is always true. (couldn't
62 find any info about this in the SDK docs)
[7402]63
[7395]64 2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>
65 - GUIDLIB: o Library with all GUIDs used by Odin
66 - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:
67 o Removed guid source files and link with guidlib.lib
68
69 2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>
[7380]70 - WS2_32: o Compile fix
71 - OLEAUT32: o Don't include guid file in custom build library
72
[7395]73 2000-11-18: Yuri Dario <mc6530@mclink.it>
[7411]74 - USER32: o WM_SETTEXT (unicode) fix
[7372]75 (latest changes broke Opera among other things)
76
[7363]77 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
78 - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
79 - USER32: o Disallow nested calls to SetScrollRange. This is most likely
80 not the right fix, but it works so far without negative side
81 effects.
82 (fixes crash in CVP listview with 4+ items)
[7367]83 - GDI32: o Removed line draw speedup. If I have to choose between
84 a performance loss of a few clock cycles and a code size
85 increase of 2k, I prefer the 1st option.
[7369]86 - WSOCK32: o ODINWRAP changes break winsock. This code still depended
[7411]87 on FS save/restore. Now added a wrapper header for all
[7369]88 OS/2 socket functions.
[7363]89
[7356]90 2001-11-16: Patrick Haller <patrick.haller@innotek.de>
91 - ODINWRAP: o don't generate any frame procedure for RELEASE build
92 anymore (even no FS: wrapper (meanwhile superfluous))
93 -> significant performance gain for logged micro functions
94 - KERNEL32: o heap speedup (30%)
[7362]95 - GDI32: o minor line drawing speedup
[7356]96
[7350]97 2001-11-14: Patrick Haller <patrick.haller@innotek.de>
98 - KERNEL32: o fixed infinite loop in PE loader for corrupted or
99 misinterpreted PE images (Opera 6)
[7352]100 - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
[7350]101
[7344]102 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
103 - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
104 o Removed unnecessary string copy operation changes (heap -> stack)
105 Performance improvement is minimal at best and stack
106 corruption is MUCH harder to locate than heap corruption.
107
[7339]108 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
[7341]109 - fastdep: o IPF support.
110
111 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
[7339]112 - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
113 ... which operate on stack only (STACK_strdupXXX)
114 This could slightly reduce heap pressure.
115 - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
116
[7329]117 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
118 - KERNEL32: o Added missing entry in debug log table for hmparport
119 (fixes crash in debug build with selective logging)
120 - GDI32: o CalcBitmapSize bugfix
121 o SetDIBitsToDevice workaround for bug in Matrox driver.
122 When blitting 32 bpp data, the GpiDrawBits call will
123 fail with an insufficient memory error. When that happens,
124 convert data to 24 bpp and try again.
125 (TODO: This can happen in more functions!!)
126 o Fixes for wrong bit masks in several functions (24 & 32 bpp)
[7331]127 o Refuse DeleteObject for DEFAULT_GUI_FONT handle
[7329]128
[7326]129 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
130 - ODINWRAP: o improved thread call path tracking
131 (now collects i. e. HEAP_malloc->HeapAlloc paths)
132
[7324]133 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
134 - USER32: o Fix for calculating font size for a dialog box
135
[7320]136 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
137 - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
138 (Build breaker. Seems like someone has an old toolkit...)
139
[7316]140 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
141 - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
142
[7303]143 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
144 - COMCTL32: o Ported latest Wine property sheet control
145 (fixes some, but not all problems in CVP)
146
[7299]147 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
148 - KERNEL32: o first shot at parport support
149
[7292]150 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
151 - USER32: o EndDialog fix for MFC dialog windows
[7295]152 o static control fix: SS_CENTERIMAGE means fill remainder
153 of client area with upper left pixel of bitmap
[7292]154 - KERNEL32: o Fix for applications that use CreateFile to open
155 a named pipe
156
[7291]157 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
158 - WININET: o http, internet: WINE sync
159
[7285]160 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
161 - KERNEL32: o Call old DosOpen if DosOpenL not available
162
Note: See TracBrowser for help on using the repository browser.