source: trunk/changelog@ 6056

Last change on this file since 6056 was 6056, checked in by bird, 24 years ago

* empty log message *

File size: 14.6 KB
Line 
1/* $Id: changelog,v 1.1531 2001-06-21 16:10:55 bird Exp $ */
2
3 2001-06-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
4 - DDRAW: o io_init1, io_init2 and io_exit1 forgot to save/restore EBX.
5 (Broke some apps when XF86Sup.sys is installed)
6
7 2001-06-20: Sander van Leeuwen <sandervl@xs4all.nl>
8 - include\win\winioctl.h:
9 o Added CDROM ioctls
10 - KERNEL32: o Dummy CDROM ioctl support
11
12 2001-06-19: Sander van Leeuwen <sandervl@xs4all.nl>
13 - KERNEL32: o Started with event, mutex & semaphore rewrite
14 (code not activated)
15
16 2001-06-18: Sander van Leeuwen <sandervl@xs4all.nl>
17 - USER32: o Added export entry for GetScrollBarInfo
18 o Set ordinals for some exports
19 o Correct size of SBS_SIZEBOX and SBS_SIZEGRIP scrollbars
20 during creation. (if too high or wide)
21 (CPOV bottom scrollbar now appears)
22 - COMCTL32: o Wrong check in 6/17 comctl32 change
23
24 2001-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
25 - KERNEL32: o Implemented IOCTL_SCSI_PASS_THROUGH_DIRECT storage ioctl
26 - USER32: o Fix for scrollbars with SBS_SIZEBOX or SBS_SIZEGRIP style
27 (use size specified in CreateWindow only if SBS_SIZEBOXTOPLEFTALIGN
28 nor SBS_SIZEBOXBOTTOMRIGHTALIGN style flags set)
29 (CPOV window now has the right size)
30 o Allow WS_VISIBLE changes in SetWindowLong (GWL_STYLE)
31 (CPOV controls in bottom left corner now visible)
32
33 2001-06-17: Dietrich Teickner <Dietrich_Teickner@t-online.de>
34 - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
35 (fixes crash in SpeedCommander 6)
36 o Datetime control update with latest Wine code
37
38 2001-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
39 - DDRAW: o Save & Restore FS when calling io_init2
40 o Partly implemented DrawEnumDisplayModes4
41 - WINMM: o Resume failed (during waveOutWrite) after underrun
42 (fixes audio error message in Atari Emulator)
43 - KERNEL32: o Implemented IOCTL_DISK_GET_DRIVE_GEOMETRY & IOCTL_DISK_GET_MEDIA_TYPES
44 o Allow direct sector reading from disk + changing read position
45 with SetFilePointer
46 o 6/14 kernel32 changes broke dynamic loading of LX dlls; getHMOD
47 returned the wrong module handle
48
49 2001-06-15: Sander van Leeuwen <sandervl@xs4all.nl>
50 - USER32: o Removed yesterday's getControl dialog change.
51 (causes errors for certain installshield installers)
52 o Add frame controls when app changes style flags (os/2 appearance)
53 (fixes missing titlebar when switching between maximized &
54 restored state for MDI windows in Opera)
55 - KERNEL32: o PDB.exit_code is a pointer to an unknown structure in NT
56 Fill it with a pointer to a memory block with 8th byte set to 1.
57 (fixes crash in AssetAllocator install)
58
59 2001-06-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
60 - KERNEL32: o Correct bug in LoadLibrary which prevented dynamically
61 - WIN32K: o Forgot to close file on failure in ldrOpen. When Pe2Lx
62 failed (due to wrong subsystem), the file remained open.
63
64 2001-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
65 - USER32: o OSLibWinGetMsg: dispatch untranslated message immediately
66 and grab next one.
67 o Manually change min/max/restore button states (OS/2 appearance)
68 o Handle WM_SYSCOMMAND messages in frame window handler
69 o Button fix (Wine bug)
70 Must clear WS_TABSTOP of control that is already unchecked or
71 else multiple control can have this style ((auto)radiobutton)
72 and GetNextDlgTabItem will return the wrong one.
73 Happens in Opera preferences dialog (multimedia) where all
74 autoradio buttons have the WS_TABSTOP style.
75 o Added temporary workaround for Open32 crashes in Opera
76
77 2001-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
78 - USER32: o Corrected position of PM titlebar control
79 o Added SetWindowAppearance function that can be used
80 by Odin32 apps to override the appearance (win32 or OS/2)
81 of windows.
82 o Changed menu font for OS/2 appearance (bold)
83 o Draw system menu icon ourselves (OS/2 appearance)
84 o SetWindowText fix (OS/2 appearance)
85 o WM_ERASEBKGND handling changes for dialogs
86 - GDI32: o CreateDIBSection bugfix (wrong ReleaseDC call)
87
88 2001-06-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
89 - WIN16LDR: o Made it compile with Watcom and MSC60.
90 Currently I can't link it with MSC60 form the DDK
91 since there is no window libraries there.
92 Watcom links fine. But the result is not tested.
93 - VDMDBG: o Stubbed this DLL. (It's used by the NT TaskMgr.)
94 (Documented in SDK, doc\misc\VDMDbg.Hlp. Which is included
95 in the NT sdk distributed with Watcom v11 - %WATCOM\sdk.)
96 - Win32k/Pe2Lx:
97 o Allowed loading of images using the NATIVE subsystem.
98 o Added symbols for build 14.065F (2001-05-08) all kernels.
99 - DailyBuild:
100 o Moved Odin.ini to system32 in daily .zips.
101 - NTDLL: o Stubbed NtOpenThread.
102
103 2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
104 - USER32: o Partly fixed position of PM frame controls
105 o FillRect fix for 0 brush
106 o Workaround for windows with CS_CLASSDC class. Use same
107 mechanism as CS_OWNDC. (might not always work though)
108 No (easy) way to share a single DC between windows in PM.
109 (fixes paint problems in MED)
110 o Use critical sections for local hooks; faster than
111 kernel mutex semaphore calls.
112 - GDI32: o SetDIBColorTable bugfix
113 - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
114 (Winbench tries this)
115 - ADVAPI32: o Pretend no services found in EnumServicesStatusA/W instead of
116 returning error.
117 (prevents crash in Winbench)
118
119 2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
120 - USER32: o Reference count bugfixes
121 - GDI32: o Added RGB555 conversion for CreateDIBitmap & SetDIBits
122
123 2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
124 - USER32: o SetParent bugfix (caused crashes in user32 after yesterday's changes)
125 o Preliminary support added for OS/2 look and feel (not finished)
126 Odin.ini option:
127 [ODINSYSTEM]
128 OS2Look=1 (default = 0)
129 Creates OS/2 Titlebar, system menu & min/max/close buttons.
130 Also overrides UseWinColors option (uses OS/2 colors).
131 NOTE: Can interfere with windows applications that draw their
132 own custom titlebar. (e.g. RealPlayer)
133 - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
134 o CreateProcess: launch win16 loader for NE executables
135 - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
136 Overrides GetVersion & WinExec functions to return the
137 version NT returns and to launch 32 bits programs (using pe).
138 (NOT FINISHED and not included in daily build)
139 - PELDR: o Execute win16 loader for NE executables.
140
141 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
142 - Win32API.h:
143 o Added APIs required to compile user32.
144 - src/makefile:
145 o Relaxed the locks a little.
146 - Win32k: o Separated VAC3 and VAC36 output. (Please re-run configure!)
147 - makefiles/VAC36:
148 o Ignore ILIB warnings. (like those in the opengl tree)
149
150 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
151 - USER32: o Keep reference count for window and class objects.
152 Only delete the objects when nobody else is using them anymore.
153 (fixes crashes due to premature destruction of objects;
154 e.g. during Napster startup)
155 - KERNEL32: o heap checking accidentally turned on during logging
156 (making the debug build extremely slow)
157 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
158 no apparent reason. Don't bail out when that happens, but try
159 to create the process anyway.
160 (fixes CreateProcess during Napster install)
161 o Improved version of InterlockedIncrement & InterlockedDecrement
162 (borrowed from Wine)
163
164 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
165 - KERNEL32: o WinExec fixes
166 o Ported Wine's WritePrivateProfileSectionA
167 - GDI32: o DIB Section blits: translate all ROPs
168 o GetDIBits fix; RGB conversion was not always performed;
169 now only for requested scanlines.
170
171 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
172 - KERNEL32: o Optimizations for loading of PE images
173
174 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
175 - OLE32: o More VAC 3.6.5 compile fixes
176
177 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
178 - FastDep: o Performance enh. Don't scan files more than 1 month older
179 than existing .depend file.
180 o Optimized AVL tree sligtly by not performing two strcmp
181 on the same keys (but resuing the result from the first).
182 o Improved dependencies genereated for OS/2 resource files.
183 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
184 o Code is now in sync with OS2Tools.
185
186 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
187 - OLE32: o VAC 3.6.5 compile fix
188
189 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
190 - KERNEL32: o Fixed ordinal export resolving for PE executables
191 (SO52 complained about missing exports)
192
193 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
194 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
195 (fixes endless repainting loop in WinRAR 2.80)
196 - KERNEL32: o Optimized ordinal lookup even more.
197 (6900 ordinal lookups takes (on average) 31 ms now instead
198 of 78)
199
200 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
201 - KERNEL32: o Added driver dll plugin for custom device driver emulation
202 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
203 that contain 'DllName' keys.
204 DllName contains the name of the plugin dll that exports
205 DrvOpen, DrvClose & DrvIOCtl.
206 o Dispatch breakpoint exception to application (release build only)
207 Some nasty applications expect this.
208
209 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
210 - USER32: o Ported & fixed ScrollDC (Wine)
211 (fixes scrolling in Adobe Framemaker 5.5)
212 - GDI32: o RGB 565->555 conversion in GetDIBits
213 o RGB 555->565 conversion in DIB Section sync
214 o Sync DIB section in RealizePalette if any colors changed
215 (fixes PowerDVD colors)
216
217 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
218 - Win32k/configure.cmd:
219 o Corrected search for the VAC compiler.
220 o Removed stupid messages when -w is specified.
221
222 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
223 - COMDLG32: o fix crash due to uninitialized COM object pointer in
224 Win95 open file dialog browse mode
225 o default to open mode in file dialog when the
226 OFN_NOVALIDATE mode is used
227 (fixes crash in FrameMaker 5.5 file dialog when opening
228 a file that has broken image references)
229 - KERNEL32: o log both error and no error conditions for GetLastError
230 with default error level. Sometimes, we don't set an error
231 where we should so this logging information is important
232 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
233 CreateFileA to open a non existing file.
234 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
235 Verified with Windows 2000 SP2
236 (makes Acrobat Distiller 5.0 startup and work!)
237
238 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
239 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
240 [WINMM]
241 DefVolume=50[0-100] Default waveout volume (default = 100)
242 - USER32: o ScrollDC fix for translating clip & scroll rectangles
243 (fixes scrolling in Adobe Framemaker 5.5)
244
245 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
246 - USER32: o Send WM_HELP if F1 pressed & no menu active
247 o Disabled system hooks (only work in one process)
248 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
249 barely noticable with 'real' applications)
250 - OLE32: o Added OleLoadPictureEx stub
251 - GDI32: o GetDIBits fix for querying the bitmap information
252 WGSS returns 0, but we should return the nr of scan lines requested
253 o GetDIBits fix for memory dcs. WGSS messes things up if
254 it's a memory DC.
255 (fixes lower right button in AIM's logon window when typing
256 in new name)
257 o ExtTextOutA/W fix for filling rectangle with background color
258 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
259 (fixes border between menu & button bar in Odin MFC app &
260 Acrobat Reader 4.05)
261 o StretchDIBits fix for RGB555 bitmaps
262 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
263 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
264
265 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
266 - KERNEL32: o benchmarked new experimental loader and reverted to
267 old but slightly optimized loader (processExport usually
268 outweighs processImport, so lookup is less valuable than
269 add to export list)
270 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
271 its icon cache. Revert to on-demand loading of the icons,
272 speeds up loading of SHELL32 (therefore most apps)
273 by several seconds.
274
Note: See TracBrowser for help on using the repository browser.