source: trunk/changelog@ 8862

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

* empty log message *

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