source: trunk/changelog@ 8881

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

* empty log message *

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