source: trunk/changelog@ 8963

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

* empty log message *

File size: 31.7 KB
Line 
1/* $Id: changelog,v 1.2247 2002-08-07 17:11:39 sandervl Exp $ */
2
3 2002-08-07: Platon Fomichev <platon@innotek.de>
4 - USER32: o Listbox fix for keyboard search (Wine)
5
6 2002-08-05: Sander van Leeuwen <sandervl@innotek.de>
7 - USER32: o MsgWaitForMultipleObjects changes; check objects before
8 message queue status
9 o Translate WM_DRAWCLIPBOARD for clipboard change notification
10
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
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
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)
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)
37
38 2002-07-30: Platon Fomichev <platon@innotek.de>
39 - KERNEL32: o Unicode update
40
41 2002-07-29: Sander van Leeuwen <sandervl@innotek.de>
42 - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler)
43
44 2002-07-28: Sander van Leeuwen <sandervl@innotek.de>
45 - KERNEL32: o Added function to disable os2cdrom.dmd aspi support
46 - WNASPI32: o Fixes for cdrom drive/burner recognition
47
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)
59 - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version
60
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
67 2002-07-23: Sander van Leeuwen <sandervl@innotek.de>
68 - KERNEL32: o Enhanced CreateWin32PeLdrExe
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
72 - PELDR: o Modified for new CreateWin32PeLdrExe
73
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
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
81 2002-07-19: Sander van Leeuwen <sandervl@innotek.de>
82 - ODINCRT: o Dos*CriticalSection fixes
83
84 2002-07-16: Sander van Leeuwen <sandervl@innotek.de>
85 - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday)
86
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)
93 o Dynamically allocate GDI handle array to prevent waste of
94 shared memory (as it is a private array)
95 - USER32: o Updates for new handle management
96 o System pens & brushes can't be deleted by applications
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
101 o Dynamically allocate handlemanager array to prevent waste of
102 shared memory (as it is a private array (for now))
103
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
106 o Disabled 64kb alignment in VirtualAlloc for now
107 (algorithm lead to infinite recursion on SMP kernels,
108 pending a better algorithm)
109
110 2002-07-12: Platon Fomichev <platon@innotek.de>
111 - USER32: o Close menu when RMB is pressed outside menu window
112
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
117 o Touch GETAPIMAP array to force OS/2 to make it valid; some
118 braindead audio drivers do not check pointers.
119
120 2002-07-11: Platon Fomichev <platon@innotek.de>
121 - COMCTL32: o Listview: clear background for area without items (ownerdrawn)
122 - USER32: o OSLibWinShowTaskList must query task list window
123 handle from OS/2 and not assume a constant handle value
124
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.
128 o Put back focus fix from 2001-11-20
129
130 2002-07-06: Sander van Leeuwen <sandervl@innotek.de>
131 - KERNEL32: o Com overlapped IO changes for reference counts
132
133 2002-07-05: Platon Fomichev <platon@innotek.de>
134 - USER32: o SetFocus not allowed on invisible windows
135
136 2002-07-05: Sander van Leeuwen <sandervl@innotek.de>
137 - KERNEL32: o Dump exception log to except.log in system32 directory
138 o Added functions to customize logging (filename +
139 enable/disable
140 o Keep reference count for overlapped IO objects to avoid
141 premature destruction
142
143 2002-07-03: Sander van Leeuwen <sandervl@innotek.de>
144 - WS2_32: o Added WSASendDisconnect stub
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
148
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>
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)
157 o Edit control: don't beep when receiving Enter (single line
158 control)
159 - DDRAW: o Color fill bugfixes:
160 - fill up to height, not height - 1
161 - check for single pixel line fills -> avoid heap corruption
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
170
171 2002-06-30: Sander van Leeuwen <sandervl@innotek.de>
172 - KERNEL32: o WriteFile for standard out: convert line feed without
173 carriage return into CR+LF
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)
177
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)
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)
185
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
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
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)
203 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
204 floppy drives
205 o Fixed CreateFile for disks
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)
214
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
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)
235 o FileTimeToSystemTime fix (no problems with WGSS implementation)
236 o Removed bad unicode change
237
238 2002-06-25: knut st. osmundsen <bird@anduin.net>
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).
247
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
253 2002-06-21: knut st. osmundsen <bird@anduin.net>
254 - KERNEL32: o LCMapStringW fix
255
256 2002-06-20: Platon Fomichev <platon@innotek.de>
257 - COMCTL32: o Don't erase background for ownerdrawn listview controls
258 (LISTVIEW_RefreshReport)
259
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
264 o Added DisableDragDrop
265
266 2002-06-20: knut st. osmundsen <bird@anduin.net>
267 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
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.
279
280 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
281 - OLE32: o Drag 'n drop fixes
282
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
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.
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.
300
301 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
302 - USER32: o Disabled drag 'n drop temporarily (not yet stable)
303
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)
308 - INSTALL: o Create object for Odin User's Manual + fixed object
309 creation for OdinBug Manual
310 o Include OdinBug.HLP & OdinUser.INF
311 - SHELL32: o Fixed desktop object creation during win32 app install
312
313 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
314 - SETUPAPI: o Wine resync + added debug wrappers
315 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
316 o Check for NULL parameters in GetFullPathNameW
317 o hmfile.cpp: ParsePath fix; check boundary
318 o LoadLibraryExA: expand library filename; might contain
319 environment variables
320 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
321 registry.dll doesn't like this type for some reason
322 - USER32: o Do proper filtering for PeekMessage
323 - NTDLL: o Forward heap functions to kernel32
324 - QUARTZ: o Removed old code (stub dll now)
325 - AVIFIL32: o Resync with Wine
326 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
327
328 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
329 - USER32: o SetCustomWndHandleSemName added to override shared semaphore
330 name used to synchronize global window handle array access
331 (to avoid name clash with Odin)
332 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
333 name used to synchronize global memory map list access
334 (to avoid name clash with Odin)
335
336 2002-06-13: Platon Fomichev <platon@innotek.de>
337 - USER32: o Only minimize or maximize window if appropriate style flag set
338
339 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
340 - KERNEL32: o If bytes present in COM device buffer, read them directly;
341 even for overlapped IO calls.
342
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
347 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
348 - OLEAUT32, SHELL32:
349 o Some Wine updates
350 - KERNEL32: o Overlapped IO bugfixes
351 o Thread TEB linking bugfix
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)
355
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
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)
366 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
367 overlapped IO
368
369 2002-06-09: knut st. osmundsen <bird@anduin.net>
370 - Makefiles:
371 o Exclude dummy.c from the dependencies.
372
373 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
374 - KERNEL32: o Corrections for Austrian NLS file
375
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%))
380 o Skip window handle 0x68000000 (otherwise more difficult
381 to compare logs with old builds)
382 o Logging changes for comparing source file names
383 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
384 (fixes Java 1.4 installation (first dialog))
385 - COMDLG32: o GetFileDialog95W fix (check if template name is string or
386 numeric id)
387 (fixes OpenOffice 1.0 file open dialog crash)
388 - WININET: o Fixed shlwapi imports
389 - OLE32: o Resync with latest Wine
390 - OLEAUT32: o Resync with latest Wine
391
392 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
393 - SHELL32: o Moved resource files to subdir
394 - COMDLG32: o Compile fix + moved resource files to subdir
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
400 o Print FOURCCs supported by Dive
401
402 2002-06-08: knut *st. osmundsen <bird@anduin.net>
403 - TOOLS\WRC:o Compile fix
404
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
409 2002-06-06: knut st. osmundsen <bird@anduin.net>
410 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
411
412 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
413 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
414 opening an existing file
415
416 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
417 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
418
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
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)
426 o Postpone recording when waveInStart called without
427 any buffers in the queue. Start in during next
428 waveInAddBuffer call.
429 o Fixed DART waveout resume
430
431 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
432 - USER32: o Fix for AltGr key combinations
433 - WINMM: o Updates for wave playback
434
435 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
436 - USER32, OLE32:
437 o Drag and drop fixes
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
443
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
449 o Updates for OLE drag 'n drop
450 - KERNEL32: o LogException: check lockcount before changing it on entry
451 (it is not always > 0 -> previously caused hang in exception
452 handler (zombie process))
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)
456
457 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
458 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
459 performance
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)
465 (works in notepad; drag file object from WPS into notepad
466 window)
467
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
473 2002-05-31: Platon Fomichev <platon@innotek.de>
474 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
475
476 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
477 - WINMM: o Mixer fixes
478
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
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)
486 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
487 o mixerGetLineInfoW fix
488 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
489 wrt cx parameter (when set to zero)
490 (fixes properties dialog of sndvol32.exe (windows mixer app))
491 o Updated status control to latest Wine & applied two
492 bugfixes (already sent to wine-patches)
493
494 2002-05-29: Platon Fomichev <platon@innotek.de>
495 - USER32: o GetAsyncKeyState fix for VK_MENU
496 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
497 (invalidate control to prevent leftovers of size grip)
498
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
503 o Support added for master volume (ioctl90 mode)
504 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
505 o Wave recording now works
506
507 2002-05-28: Platon Fomichev <platon@innotek.de>
508 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
509 - KERNEL32: o Debugger updates
510
511 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
512 - WINMM: o Completely implemented mixerGetControlDetailsA/W
513 o Mixer updates
514 - TESTAPP\MIXER:
515 o Test application for mixer functions
516
517 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
518 - WINMM: o Fix for soundcards without ioctl90 mixer support
519 o Many mixer updates
520
521 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
522 - WINMM: o More mixer updates (not yet finished)
523
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
527 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
528 - WINMM: o Mixer updates (not yet finished)
529
530 2002-05-23: Platon Fomichev <platon@innotek.de>
531 - USER32: o Keyboard fixes for right alt & right shift
532
533 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
534 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
535 (fixes RealPlayer (PostThreadMessage))
536 - WINMM: o Added debug wrappers
537 o Started with mixer api rewrite
538
539 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
540 - KERNEL32: o Round stack top & bottom (TIB) to page boundary
541
542 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
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
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
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
558 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
559 - OLEAUT32: o Resync with latest Wine
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
563
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
573 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
574 - NTDLL: o Partial resync with Wine
575 - KERNEL32: o Export some functions for NTDLL
576 o Fixed creation of logfile for executables on readonly volumes
577 o RegQueryInfoKeyW fix
578 o TLS fix for pe2lx images
579 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
580 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
581 SystemParametersInfoA parameters
582 - OLE32: o Resync with latest Wine
583
584 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
585 - DINPUT: o Made mouse code reentrant
586 - GDI32: o Fix for EnumFontFamiliesA/W
587 - SETUPAPI: o Resync with latest Wine
588
589 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
590 - KERNEL32: o CustForce2GBFileSize function added to force
591 GetVolumeInformation to tell the app all partitions are FAT
592 (2 GB file size limitation)
593 - COMCTL32: o Merged property sheet control with latest Wine version
594
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
599 2002-05-10: Platon Fomichev <platon@innotek.de>
600 - KERNEL32: o Parallel port updates (use resource manager to query
601 hardware configuration)
602
603 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
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
610 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
611 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
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:\))
619 o GetVolumeInformation change: keep file system name if
620 NTFS or FAT32
621 o Implemented unmounted volume and physical disk access
622
623 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
624 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
625 toolbar, tab, pager, nativefont, imagelist code
626 o Updated license (LGPL) for comctl32
627 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
628 in NTDLL)
629 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
630 - KERNEL32: o Implemented volume & volume mountpoint functions
631 (win2k and up)
632 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
633 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
634
635 2002-05-08: Platon Fomichev <platon@innotek.de>
636 - COMCTL32: o Merged listview control with latest Wine
637
638 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
639 - USER32: o WH_MOUSE_LL hook fixes
640
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
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
650 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
651 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
652
653 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
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.