source: trunk/changelog@ 8843

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

* empty log message *

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