source: trunk/changelog@ 8865

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

* empty log message *

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