source: trunk/changelog@ 8957

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

* empty log message *

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