source: trunk/changelog@ 8950

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

* empty log message *

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