source: trunk/changelog@ 8936

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

* empty log message *

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