source: trunk/changelog@ 8860

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

* empty log message *

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