source: trunk/changelog@ 8932

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

* empty log message *

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