source: trunk/changelog@ 8827

Last change on this file since 8827 was 8827, checked in by sandervl, 23 years ago

* empty log message *

File size: 24.5 KB
Line 
1/* $Id: changelog,v 1.2204 2002-07-03 09:47:09 sandervl Exp $ */
2
3 2002-07-03: Sander van Leeuwen <sandervl@innotek.de>
4 - WS2_32: o Added WSASendDisconnect stub
5
6 2002-07-02: Sander van Leeuwen <sandervl@innotek.de>
7 - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC
8 (problem located in GDI32)
9
10 2002-07-01: Sander van Leeuwen <sandervl@innotek.de>
11 - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W
12 (Wine doesn't do this, but experiments in Windows 2000 show
13 different behaviour)
14 o Edit control: don't beep when receiving Enter (single line
15 control)
16 - DDRAW: o Color fill bugfixes:
17 - fill up to height, not height - 1
18 - check for single pixel line fills -> avoid heap corruption
19 o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC
20 o SurfReleaseDC; initialize BITMAPINFO structure properly
21 before calling GetDIBits + fix for 16 bpp GetDIBits
22 (which always returns data in RGB555 format in our case)
23 o Fill16on16: convert RGB555 color value to RGB565
24 o Mark surface as changed (ChangeUniquenessValue) after
25 blit & fill
26 - KERNEL32: o Print win32 module name when exception occurs
27
28 2002-06-30: Sander van Leeuwen <sandervl@innotek.de>
29 - KERNEL32: o WriteFile for standard out: convert line feed without
30 carriage return into CR+LF
31 o VirtualFree; don't allow app to decommit stack pages
32 (VAC runtime uses last stack page to store some internal
33 data; if freed pe/pec will crash during exit)
34
35 2002-06-28: Sander van Leeuwen <sandervl@innotek.de>
36 - USER32: o Removed focus fix from 2001-11-20; controls of child
37 dialogs can receive input focus (CVP wizard dialogs)
38 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
39 flag is set (otherwise the hook will be called twice)
40 o Call message filter hook in IsDialogMessageA/W
41 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
42
43 2002-06-27: Platon Fomichev <platon@innotek.de>
44 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
45 done in windows)
46
47 2002-06-27: Sander van Leeuwen <sandervl@innotek.de>
48 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
49 is valid. (COMDLG32_UpdateCurrentDir)
50 (fixes crash in file dialog when double clicking on abstract
51 objects like 'My Computer')
52
53 2002-06-26: Sander van Leeuwen <sandervl@innotek.de>
54 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
55 DosDateTimeToFileTime functions;
56 Real problem lies in the fact that the times returned
57 by DosFindFirst, DosFindNext, DosQueryPathInfo &
58 DosQueryFileInfo are in local time; we must convert them
59 to file time (UTC)
60 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
61 floppy drives
62 o Fixed CreateFile for disks
63 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
64 fail if no disk present or when the media has been changed
65 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
66 always succeed
67 o Don't fail CreateFile for disk when DosOpen fails with
68 a sharing violation. Apparently this is allowed in windows;
69 although you can't do much with the handle. (limited to
70 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
71
72 2002-06-26: knut st. osmundsen <bird@anduin.net>
73 - KERNEL32\testcase:
74 o Added testcase for Test of SetConsoleCtrlHandler() and
75 GenerateConsoleCtrlEvent().
76 Note. The last part of it is known to fail since the
77 functions aren't 100% implemented yet.
78 o Added mini testcase for MultiByteToWideChar().
79 o Use the testsuite tools for unit testcases too.
80 - KERNEL32: o Partial implementation of Console Ctrl Handlers.
81 (Ctrl-Break and Ctrl-C)
82 o GetFileType on std files doesn't always return TYPE_CHAR.
83 Ask what kind of filehandle we have.
84 (Solves 'press key' problem with "wcc386.exe > file".)
85 o Enable writing to STDERR. (This might have brought into
86 light a redirection problem.)
87
88 2002-06-25: Sander van Leeuwen <sandervl@innotek.de>
89 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
90 key data; registry.dll returns the wrong value (too big;
91 appears size of internal storage)
92 o FileTimeToSystemTime fix (no problems with WGSS implementation)
93 o Removed bad unicode change
94
95 2002-06-25: knut st. osmundsen <bird@anduin.net>
96 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
97 is bad.
98 - SHELL32: o Bad linked list walking. (accessed node after free)
99 - USER32: o Allocate space the two missing RGB2 entries.
100 o Use "%.*s" and "%.*ls" when we have a string with a length.
101 (Crashing in logging is awfull. Creates zombies!)
102 - ODINCRT: o Reserve low 32MB of address space before initializing
103 the CRT IF we compile with the debug heap (kLib).
104
105 2002-06-24: knut st. osmundsen <bird@anduin.net>
106 - Testsuite:
107 o Most of the watcom case done and working.
108 - Make: o Corrected LIB paths of the win32 watcom setup.
109
110 2002-06-21: knut st. osmundsen <bird@anduin.net>
111 - KERNEL32: o LCMapStringW fix
112
113 2002-06-20: Platon Fomichev <platon@innotek.de>
114 - COMCTL32: o Don't erase background for ownerdrawn listview controls
115 (LISTVIEW_RefreshReport)
116
117 2002-06-20: Sander van Leeuwen <sandervl@innotek.de>
118 - OLE32: o Drag 'n drop fix
119 - USER32: o Drag 'n drop fix
120 o Enabled drag 'n drop again
121 o Added DisableDragDrop
122
123 2002-06-20: knut st. osmundsen <bird@anduin.net>
124 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
125 - Tools: o Added ExecTestcase.cmd for executing a testing and do
126 result logging.
127 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
128 - Testsuite:
129 o Use ExecTestcase.cmd for executing the testcases.
130 Logging & execute all testcases nomatter return values.
131 o Added watcomc.mak which is pretty simple watcom tests.
132 (currently noone of them really work 100%.)
133 o TODO: Make a timeout executer which kills the children when
134 they've been executing too long. This is required in order to
135 run the testsuite without human interaction.
136
137 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
138 - OLE32: o Drag 'n drop fixes
139
140 2002-06-18: Sander van Leeuwen <sandervl@innotek.de>
141 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
142 mouse state is out of sync and update if necessary
143
144 2002-06-18: knut st. osmundsen <bird@anduin.net>
145 - Win32k: o Fixed compiler warning which caused the M$ compiler
146 to choke on some systems.
147 - Testsuite:
148 o A collection of testcases running real win32 apps.
149 Not finished, just an idea currently, intended for
150 testing odin releases and changes.
151 Currently limiting ourselfs to CUI progs.
152 o A simple DoxyGen testcase is checked in.
153 o Read the micro howto in testsuite/Makefile.
154 - Make: o Synced with outside world. (NMAKE5 changes mostly.)
155 o Added support for TARGET_MODE = TESTCASE.
156 o Added separate tools file for the testsuite.
157
158 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
159 - USER32: o Disabled drag 'n drop temporarily (not yet stable)
160
161 2002-06-16: Sander van Leeuwen <sandervl@innotek.de>
162 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
163 o Removed: LoadLibraryExA: expand library filename
164 (doesn't happen in Windows)
165 - INSTALL: o Create object for Odin User's Manual + fixed object
166 creation for OdinBug Manual
167 o Include OdinBug.HLP & OdinUser.INF
168 - SHELL32: o Fixed desktop object creation during win32 app install
169
170 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
171 - SETUPAPI: o Wine resync + added debug wrappers
172 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
173 o Check for NULL parameters in GetFullPathNameW
174 o hmfile.cpp: ParsePath fix; check boundary
175 o LoadLibraryExA: expand library filename; might contain
176 environment variables
177 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
178 registry.dll doesn't like this type for some reason
179 - USER32: o Do proper filtering for PeekMessage
180 - NTDLL: o Forward heap functions to kernel32
181 - QUARTZ: o Removed old code (stub dll now)
182 - AVIFIL32: o Resync with Wine
183 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
184
185 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
186 - USER32: o SetCustomWndHandleSemName added to override shared semaphore
187 name used to synchronize global window handle array access
188 (to avoid name clash with Odin)
189 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
190 name used to synchronize global memory map list access
191 (to avoid name clash with Odin)
192
193 2002-06-13: Platon Fomichev <platon@innotek.de>
194 - USER32: o Only minimize or maximize window if appropriate style flag set
195
196 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
197 - KERNEL32: o If bytes present in COM device buffer, read them directly;
198 even for overlapped IO calls.
199
200 2002-06-11: Platon Fomichev <platon@innotek.de>
201 - SHELL32: o Ignore name changes for 'My Computer' and other non-file
202 objects (file dialogs)
203
204 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
205 - OLEAUT32, SHELL32:
206 o Some Wine updates
207 - KERNEL32: o Overlapped IO bugfixes
208 o Thread TEB linking bugfix
209 o Setup TEB structure before creating thread. Otherwise it's
210 created too late and thread functions called by the app
211 right after thread creation will fail.(e.g. SetThreadPriority)
212
213 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
214 - TOOLS\ODINBUG:
215 o Added VX-REXX sources for OdinBug
216 - DOC: o OdinBug.HLP update
217 - BIN: o OdinBug.exe update
218
219 2002-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
220 - OLE32: o Fixed bug in StgStreamImpl_Seek
221 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
222 (fixes crash in Java 1.4 install)
223 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
224 overlapped IO
225
226 2002-06-09: knut st. osmundsen <bird@anduin.net>
227 - Makefiles:
228 o Exclude dummy.c from the dependencies.
229
230 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
231 - KERNEL32: o Corrections for Austrian NLS file
232
233 2002-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
234 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
235 communication
236 (fixes OpenOffice 1.0 crash during install (at 76%))
237 o Skip window handle 0x68000000 (otherwise more difficult
238 to compare logs with old builds)
239 o Logging changes for comparing source file names
240 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
241 (fixes Java 1.4 installation (first dialog))
242 - COMDLG32: o GetFileDialog95W fix (check if template name is string or
243 numeric id)
244 (fixes OpenOffice 1.0 file open dialog crash)
245 - WININET: o Fixed shlwapi imports
246 - OLE32: o Resync with latest Wine
247 - OLEAUT32: o Resync with latest Wine
248
249 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
250 - SHELL32: o Moved resource files to subdir
251 - COMDLG32: o Compile fix + moved resource files to subdir
252 - KERNEL32: o Export OSLibDosDevIOCtl
253 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
254 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
255 package from May 2001 (or newer) or recent JJSCDROM)
256 - DDRAW: o Fixed clipping bug with non-frame windows
257 o Print FOURCCs supported by Dive
258
259 2002-06-08: knut *st. osmundsen <bird@anduin.net>
260 - TOOLS\WRC:o Compile fix
261
262 2002-06-07: Sander van Leeuwen <sandervl@innotek.de>
263 - SHLWAPI: o Resync with latest Wine & added LGPL license
264 - SHELL32: o Some updates for upcoming resync
265
266 2002-06-06: knut st. osmundsen <bird@anduin.net>
267 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
268
269 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
270 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
271 opening an existing file
272
273 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
274 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
275
276 2002-06-06: Platon Fomichev <platon@innotek.de>
277 - SHELL32: o Always expand root when initializing treeview
278 o Do not sort tree in TVN_ITEMEXPANDINGA
279
280 2002-06-05: Sander van Leeuwen <sandervl@innotek.de>
281 - WINMM: o Put back original DART buffer size selection code
282 (new one messes up e.g. RealPlayer)
283 o Postpone recording when waveInStart called without
284 any buffers in the queue. Start in during next
285 waveInAddBuffer call.
286 o Fixed DART waveout resume
287
288 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
289 - USER32: o Fix for AltGr key combinations
290 - WINMM: o Updates for wave playback
291
292 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
293 - USER32, OLE32:
294 o Drag and drop fixes
295 - BIN\ODINBUG:
296 o Update by Herwig Bauernfeind (0.5.6a)
297 - DOC\MANUAL:
298 o Users manual sources by Herwig Bauernfeind
299 - DOC: o Added odinuser.inf by Herwig Bauernfeind
300
301 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
302 - USER32\CONTROLS:
303 o New dll for user32 controls (latest Wine)
304 (not activated, not finished (resync))
305 - USER32: o Moved drag & drop code to seperate file
306 o Updates for OLE drag 'n drop
307 - KERNEL32: o LogException: check lockcount before changing it on entry
308 (it is not always > 0 -> previously caused hang in exception
309 handler (zombie process))
310 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
311 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
312 (todo: Odin app -> WPS)
313
314 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
315 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
316 performance
317 o DragQueryFileW fix
318 - WINMM: o Implemented minimal control change notification
319 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
320 control (probably not 100% correct)
321 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
322 (works in notepad; drag file object from WPS into notepad
323 window)
324
325 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
326 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
327 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
328 (with LLMHF_INJECTED flag set)
329
330 2002-05-31: Platon Fomichev <platon@innotek.de>
331 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
332
333 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
334 - WINMM: o Mixer fixes
335
336 2002-05-30: Platon Fomichev <platon@innotek.de>
337 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
338 (seems to be done in windows)
339
340 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
341 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
342 (fixes AbiWord keyboard input)
343 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
344 o mixerGetLineInfoW fix
345 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
346 wrt cx parameter (when set to zero)
347 (fixes properties dialog of sndvol32.exe (windows mixer app))
348 o Updated status control to latest Wine & applied two
349 bugfixes (already sent to wine-patches)
350
351 2002-05-29: Platon Fomichev <platon@innotek.de>
352 - USER32: o GetAsyncKeyState fix for VK_MENU
353 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
354 (invalidate control to prevent leftovers of size grip)
355
356 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
357 - REGSVR32: o Fixed startup
358 - WINMM: o Completely implemented mixerSetControlDetails
359 o Mixer updates
360 o Support added for master volume (ioctl90 mode)
361 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
362 o Wave recording now works
363
364 2002-05-28: Platon Fomichev <platon@innotek.de>
365 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
366 - KERNEL32: o Debugger updates
367
368 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
369 - WINMM: o Completely implemented mixerGetControlDetailsA/W
370 o Mixer updates
371 - TESTAPP\MIXER:
372 o Test application for mixer functions
373
374 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
375 - WINMM: o Fix for soundcards without ioctl90 mixer support
376 o Many mixer updates
377
378 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
379 - WINMM: o More mixer updates (not yet finished)
380
381 2002-05-23: Yuri Dario <mc6530@mclink.it>
382 - USER32: o Don't beep when unable to find menu item when alt key pressed
383
384 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
385 - WINMM: o Mixer updates (not yet finished)
386
387 2002-05-23: Platon Fomichev <platon@innotek.de>
388 - USER32: o Keyboard fixes for right alt & right shift
389
390 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
391 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
392 (fixes RealPlayer (PostThreadMessage))
393 - WINMM: o Added debug wrappers
394 o Started with mixer api rewrite
395
396 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
397 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
398
399 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
400 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
401 since a dll that depends on dlls with an exitlist handler
402 doesn't get properly unloaded (initterm not called for unload
403 nor for a 2nd load)
404
405 2002-05-20: Dmitry Froloff <froloff@os2.ru>
406 - KERNEL32: o Removed 64 MB memory mapped file limit
407 o Fix for opening memory mapped file with size larger than
408 the file size
409
410 2002-05-17: Platon Fomichev <platon@innotek.de>
411 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
412 if window is not visible (fixes endless loop in
413 property sheet when switching page with keyboard)
414
415 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
416 - OLEAUT32: o Resync with latest Wine
417 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
418 (IOCTL_CDROM_CURRENT_POSITION only)
419 o IOCTL_CDROM_READ_TOC fix
420
421 2002-05-16: knut st. osmundsen <bird@anduin.net>
422 - MAKE: o Merged in latest changes.
423 o Create NewConfigure.cmd for this environment.
424 Try NewConfigure.cmd -? first.
425 (Do 'nmake needed' before calling this. (stupid!))
426 o Please note that this is still not 100% configured for
427 Odin32 yet. But eventually it will replace the existing
428 make system.
429
430 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
431 - NTDLL: o Partial resync with Wine
432 - KERNEL32: o Export some functions for NTDLL
433 o Fixed creation of logfile for executables on readonly volumes
434 o RegQueryInfoKeyW fix
435 o TLS fix for pe2lx images
436 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
437 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
438 SystemParametersInfoA parameters
439 - OLE32: o Resync with latest Wine
440
441 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
442 - DINPUT: o Made mouse code reentrant
443 - GDI32: o Fix for EnumFontFamiliesA/W
444 - SETUPAPI: o Resync with latest Wine
445
446 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
447 - KERNEL32: o CustForce2GBFileSize function added to force
448 GetVolumeInformation to tell the app all partitions are FAT
449 (2 GB file size limitation)
450 - COMCTL32: o Merged property sheet control with latest Wine version
451
452 2002-05-14: Platon Fomichev <platon@innotek.de>
453 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
454 SWP_FOCUS(DE)ACTIVATE message.
455
456 2002-05-10: Platon Fomichev <platon@innotek.de>
457 - KERNEL32: o Parallel port updates (use resource manager to query
458 hardware configuration)
459
460 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
461 - KERNEL32: o Applications are now allowed to read physical disks or
462 mounted partitions. Write access is only allowed for
463 unmounted partitions or floppy disks.
464 o Implemented GetFileSize for disk objects; corrected
465 return value for some failures (-1)
466
467 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
468 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
469 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
470 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
471 mountpoints (e.g. C:\)
472 o Rewrote FindFirst/NextVolume to use LVM interface (if
473 availabe; else fail)
474 o Extended GetDriveType & GetVolumeInformation for volume
475 names (instead of only disk names (e.g. C:\))
476 o GetVolumeInformation change: keep file system name if
477 NTFS or FAT32
478 o Implemented unmounted volume and physical disk access
479
480 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
481 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
482 toolbar, tab, pager, nativefont, imagelist code
483 o Updated license (LGPL) for comctl32
484 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
485 in NTDLL)
486 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
487 - KERNEL32: o Implemented volume & volume mountpoint functions
488 (win2k and up)
489 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
490 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
491
492 2002-05-08: Platon Fomichev <platon@innotek.de>
493 - COMCTL32: o Merged listview control with latest Wine
494
495 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
496 - USER32: o WH_MOUSE_LL hook fixes
497
498 2002-05-07: Platon Fomichev <platon@innotek.de>
499 - USER32: o Listbox/combobox fix for MFC apps
500 o SetParent doesn't change WS_CHILD style
501 o Experimental change for getParent
502
503 2002-05-07: knut st. osmundsen <bird@anduin.net>
504 - CmdQd: o The daemon shouldn't inherit standard handles when started.
505 (Hung the daily build, since we use tee to do logging.)
506
507 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
508 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
509
510 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
511 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
512 translation array
513
Note: See TracBrowser for help on using the repository browser.