source: trunk/changelog@ 8965

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

* empty log message *

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