source: trunk/changelog@ 8926

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

* empty log message *

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