source: trunk/changelog@ 8809

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

* empty log message *

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