source: trunk/changelog@ 8970

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

* empty log message *

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