source: trunk/changelog@ 8793

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

* empty log message *

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