source: trunk/changelog@ 8905

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

* empty log message *

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