source: trunk/changelog@ 8961

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

* empty log message *

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