source: trunk/changelog@ 8856

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

* empty log message *

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