source: trunk/changelog@ 8819

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

* empty log message *

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