source: trunk/changelog@ 8829

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

* empty log message *

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