source: trunk/changelog@ 8946

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

* empty log message *

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