source: trunk/changelog@ 8829

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

* empty log message *

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