source: trunk/changelog@ 8959

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

* empty log message *

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