source: trunk/changelog@ 8832

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

* empty log message *

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