source: trunk/changelog@ 8820

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

* empty log message *

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