Changeset 8975 for trunk/changelog
- Timestamp:
- Aug 8, 2002, 7:37:04 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r8972 r8975 1 /* $Id: changelog,v 1.225 3 2002-08-08 17:11:24sandervl Exp $ */1 /* $Id: changelog,v 1.2254 2002-08-08 17:36:37 sandervl Exp $ */ 2 2 3 3 2002-08-08: Platon Fomichev <platon@innotek > … … 38 38 PostThreadMessage 39 39 40 2002-07-31: Sander van Leeuwen <sandervl@innotek >41 - WINMM: o Custom build function SetFixedWaveBufferSize added42 (Call to tell winmm to expect simple fixed size buffers, so43 it doesn't have to use very small DART buffers; this will44 only work in very specific cases; it is not a good general45 purpose solution)46 - USER32: o Fixed MsgWaitForMultipleObjects implementation. Now returns47 on arrival of proper window message. (previously only48 for sent messages; it should also support posted msgs)49 50 2002-07-30: Platon Fomichev <platon@innotek >51 - KERNEL32: o Unicode update52 53 2002-07-29: Sander van Leeuwen <sandervl@innotek >54 - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler)55 56 2002-07-28: Sander van Leeuwen <sandervl@innotek >57 - KERNEL32: o Added function to disable os2cdrom.dmd aspi support58 - WNASPI32: o Fixes for cdrom drive/burner recognition59 60 2002-07-26: Sander van Leeuwen <sandervl@innotek >61 - KERNEL32: o Keep suspend count per thread (Suspend/ResumeThread)62 o Detach all dlls (LIFO order) before really unloading them; this63 should take care of circular dependencies (crash while accessing64 memory of a dll that has just been freed)65 o Terminated & Resume suspended threads in ExitProcess to66 prevent the process from getting stuck in the exitlist handler.67 (OS/2 is allergic to suspended threads)68 o Terminate thread when exception occurs after ExitProcess69 o Protect larger part of on-demand page load handler70 (DosEnterCritSec)71 - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version72 73 2002-07-24: Platon Fomichev <platon@innotek >74 - USER32: o Pass on WM_PAINT of client window to default PM handler75 if window is minimized76 (fixes possible endless loop of WM_PAINT messages when77 minimizing a window)78 79 2002-07-23: Sander van Leeuwen <sandervl@innotek >80 - KERNEL32: o Enhanced CreateWin32PeLdrExe81 o Enhanced PE loader class to support files with PE image82 starting at an offset != 0 (custom build)83 o Fixes for memory map view with offset84 - PELDR: o Modified for new CreateWin32PeLdrExe85 86 2002-07-22: Sander van Leeuwen <sandervl@innotek >87 - GDI32: o Check delete flag in DeleteObject. WGSS doesn't do it for us.88 89 2002-07-21: Sander van Leeuwen <sandervl@innotek >90 - KERNEL32: o Use shared memory in high region (> 512MB) if available91 o Interface changes for shared memory allocation92 93 2002-07-19: Sander van Leeuwen <sandervl@innotek >94 - ODINCRT: o Dos*CriticalSection fixes95 96 2002-07-16: Sander van Leeuwen <sandervl@innotek >97 - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday)98 99 2002-07-15: Sander van Leeuwen <sandervl@innotek >100 - GDI32: o Graphics handle management updates101 o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap,102 CreateDIBitmap)103 o DEFAULT_GUI_FONT is a system object (applications are not allowed104 to delete it)105 o Dynamically allocate GDI handle array to prevent waste of106 shared memory (as it is a private array)107 - USER32: o Updates for new handle management108 o System pens & brushes can't be deleted by applications109 - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory110 o Allocate fake PE headers in high memory111 o Allocate win32 & code heap memory in 64kb chunks112 o Allocate PE image memory at 64kb boundary113 o Dynamically allocate handlemanager array to prevent waste of114 shared memory (as it is a private array (for now))115 116 2002-07-13: Sander van Leeuwen <sandervl@innotek >117 - KERNEL32: o We do NOT want to use any win32k services with custom builds118 o Disabled 64kb alignment in VirtualAlloc for now119 (algorithm lead to infinite recursion on SMP kernels,120 pending a better algorithm)121 122 2002-07-12: Platon Fomichev <platon@innotek >123 - USER32: o Close menu when RMB is pressed outside menu window124 125 2002-07-12: Sander van Leeuwen <sandervl@innotek >126 - WINMM: o Changed init order; do not check for MMPM2 presence if127 wave audio was already disabled128 o Minor cleanup for mixer code129 o Touch GETAPIMAP array to force OS/2 to make it valid; some130 braindead audio drivers do not check pointers.131 132 2002-07-11: Platon Fomichev <platon@innotek >133 - COMCTL32: o Listview: clear background for area without items (ownerdrawn)134 - USER32: o OSLibWinShowTaskList must query task list window135 handle from OS/2 and not assume a constant handle value136 137 2002-07-08: Sander van Leeuwen <sandervl@innotek >138 - USER32: o Changed SetFocus fix; only disallow focus change for minimized139 and disabled windows.140 o Put back focus fix from 2001-11-20141 142 2002-07-06: Sander van Leeuwen <sandervl@innotek >143 - KERNEL32: o Com overlapped IO changes for reference counts144 145 2002-07-05: Platon Fomichev <platon@innotek >146 - USER32: o SetFocus not allowed on invisible windows147 148 2002-07-05: Sander van Leeuwen <sandervl@innotek >149 - KERNEL32: o Dump exception log to except.log in system32 directory150 o Added functions to customize logging (filename +151 enable/disable152 o Keep reference count for overlapped IO objects to avoid153 premature destruction154 155 2002-07-03: Sander van Leeuwen <sandervl@innotek >156 - WS2_32: o Added WSASendDisconnect stub157 - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap)158 o Fill fixes for single lines (horizontal & vertical)159 o Optimized 8, 16 & 32bpp Fills160 161 2002-07-02: Sander van Leeuwen <sandervl@innotek >162 - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC163 (problem located in GDI32)164 165 2002-07-01: Sander van Leeuwen <sandervl@innotek >166 - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W167 (Wine doesn't do this, but experiments in Windows 2000 show168 different behaviour)169 o Edit control: don't beep when receiving Enter (single line170 control)171 - DDRAW: o Color fill bugfixes:172 - fill up to height, not height - 1173 - check for single pixel line fills -> avoid heap corruption174 o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC175 o SurfReleaseDC; initialize BITMAPINFO structure properly176 before calling GetDIBits + fix for 16 bpp GetDIBits177 (which always returns data in RGB555 format in our case)178 o Fill16on16: convert RGB555 color value to RGB565179 o Mark surface as changed (ChangeUniquenessValue) after180 blit & fill181 - KERNEL32: o Print win32 module name when exception occurs182 183 2002-06-30: Sander van Leeuwen <sandervl@innotek >184 - KERNEL32: o WriteFile for standard out: convert line feed without185 carriage return into CR+LF186 o VirtualFree; don't allow app to decommit stack pages187 (VAC runtime uses last stack page to store some internal188 data; if freed pe/pec will crash during exit)189 190 2002-06-28: Sander van Leeuwen <sandervl@innotek >191 - USER32: o Removed focus fix from 2001-11-20; controls of child192 dialogs can receive input focus (CVP wizard dialogs)193 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE194 flag is set (otherwise the hook will be called twice)195 o Call message filter hook in IsDialogMessageA/W196 - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)197 198 2002-06-27: Platon Fomichev <platon@innotek >199 - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently200 done in windows)201 202 2002-06-27: Sander van Leeuwen <sandervl@innotek >203 - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA204 is valid. (COMDLG32_UpdateCurrentDir)205 (fixes crash in file dialog when double clicking on abstract206 objects like 'My Computer')207 208 2002-06-26: Sander van Leeuwen <sandervl@innotek >209 - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &210 DosDateTimeToFileTime functions;211 Real problem lies in the fact that the times returned212 by DosFindFirst, DosFindNext, DosQueryPathInfo &213 DosQueryFileInfo are in local time; we must convert them214 to file time (UTC)215 o Fixed bug in OSLibGetDriveType; broke GetDriveType for216 floppy drives217 o Fixed CreateFile for disks218 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should219 fail if no disk present or when the media has been changed220 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should221 always succeed222 o Don't fail CreateFile for disk when DosOpen fails with223 a sharing violation. Apparently this is allowed in windows;224 although you can't do much with the handle. (limited to225 IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)226 227 2002-06-26: knut st. osmundsen <bird@anduin >228 - KERNEL32\testcase:229 o Added testcase for Test of SetConsoleCtrlHandler() and230 GenerateConsoleCtrlEvent().231 Note. The last part of it is known to fail since the232 functions aren't 100% implemented yet.233 o Added mini testcase for MultiByteToWideChar().234 o Use the testsuite tools for unit testcases too.235 - KERNEL32: o Partial implementation of Console Ctrl Handlers.236 (Ctrl-Break and Ctrl-C)237 o GetFileType on std files doesn't always return TYPE_CHAR.238 Ask what kind of filehandle we have.239 (Solves 'press key' problem with "wcc386.exe > file".)240 o Enable writing to STDERR. (This might have brought into241 light a redirection problem.)242 243 2002-06-25: Sander van Leeuwen <sandervl@innotek >244 - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string245 key data; registry.dll returns the wrong value (too big;246 appears size of internal storage)247 o FileTimeToSystemTime fix (no problems with WGSS implementation)248 o Removed bad unicode change249 250 2002-06-25: knut st. osmundsen <bird@anduin >251 - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length252 is bad.253 - SHELL32: o Bad linked list walking. (accessed node after free)254 - USER32: o Allocate space the two missing RGB2 entries.255 o Use "%.*s" and "%.*ls" when we have a string with a length.256 (Crashing in logging is awfull. Creates zombies!)257 - ODINCRT: o Reserve low 32MB of address space before initializing258 the CRT IF we compile with the debug heap (kLib).259 260 2002-06-24: knut st. osmundsen <bird@anduin >261 - Testsuite:262 o Most of the watcom case done and working.263 - Make: o Corrected LIB paths of the win32 watcom setup.264 265 2002-06-21: knut st. osmundsen <bird@anduin >266 - KERNEL32: o LCMapStringW fix267 268 2002-06-20: Platon Fomichev <platon@innotek >269 - COMCTL32: o Don't erase background for ownerdrawn listview controls270 (LISTVIEW_RefreshReport)271 272 2002-06-20: Sander van Leeuwen <sandervl@innotek >273 - OLE32: o Drag 'n drop fix274 - USER32: o Drag 'n drop fix275 o Enabled drag 'n drop again276 o Added DisableDragDrop277 278 2002-06-20: knut st. osmundsen <bird@anduin >279 - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')280 - Tools: o Added ExecTestcase.cmd for executing a testing and do281 result logging.282 - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.283 - Testsuite:284 o Use ExecTestcase.cmd for executing the testcases.285 Logging & execute all testcases nomatter return values.286 o Added watcomc.mak which is pretty simple watcom tests.287 (currently noone of them really work 100%.)288 o TODO: Make a timeout executer which kills the children when289 they've been executing too long. This is required in order to290 run the testsuite without human interaction.291 292 2002-06-19: Sander van Leeuwen <sandervl@innotek >293 - OLE32: o Drag 'n drop fixes294 295 2002-06-18: Sander van Leeuwen <sandervl@innotek >296 - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput297 mouse state is out of sync and update if necessary298 299 2002-06-18: knut st. osmundsen <bird@anduin >300 - Win32k: o Fixed compiler warning which caused the M$ compiler301 to choke on some systems.302 - Testsuite:303 o A collection of testcases running real win32 apps.304 Not finished, just an idea currently, intended for305 testing odin releases and changes.306 Currently limiting ourselfs to CUI progs.307 o A simple DoxyGen testcase is checked in.308 o Read the micro howto in testsuite/Makefile.309 - Make: o Synced with outside world. (NMAKE5 changes mostly.)310 o Added support for TARGET_MODE = TESTCASE.311 o Added separate tools file for the testsuite.312 313 2002-06-17: Sander van Leeuwen <sandervl@innotek >314 - USER32: o Disabled drag 'n drop temporarily (not yet stable)315 316 2002-06-16: Sander van Leeuwen <sandervl@innotek >317 - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ318 o Removed: LoadLibraryExA: expand library filename319 (doesn't happen in Windows)320 - INSTALL: o Create object for Odin User's Manual + fixed object321 creation for OdinBug Manual322 o Include OdinBug.HLP & OdinUser.INF323 - SHELL32: o Fixed desktop object creation during win32 app install324 325 2002-06-15: Sander van Leeuwen <sandervl@innotek >326 - SETUPAPI: o Wine resync + added debug wrappers327 - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)328 o Check for NULL parameters in GetFullPathNameW329 o hmfile.cpp: ParsePath fix; check boundary330 o LoadLibraryExA: expand library filename; might contain331 environment variables332 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;333 registry.dll doesn't like this type for some reason334 - USER32: o Do proper filtering for PeekMessage335 - NTDLL: o Forward heap functions to kernel32336 - QUARTZ: o Removed old code (stub dll now)337 - AVIFIL32: o Resync with Wine338 - INSTALL: o Add MS Shell Dlg->WarpSans font conversion339 340 2002-06-13: Sander van Leeuwen <sandervl@innotek >341 - USER32: o SetCustomWndHandleSemName added to override shared semaphore342 name used to synchronize global window handle array access343 (to avoid name clash with Odin)344 - KERNEL32: o SetCustomMMapSemName added to override shared semaphore345 name used to synchronize global memory map list access346 (to avoid name clash with Odin)347 348 2002-06-13: Platon Fomichev <platon@innotek >349 - USER32: o Only minimize or maximize window if appropriate style flag set350 351 2002-06-12: Sander van Leeuwen <sandervl@innotek >352 - KERNEL32: o If bytes present in COM device buffer, read them directly;353 even for overlapped IO calls.354 355 2002-06-11: Platon Fomichev <platon@innotek >356 - SHELL32: o Ignore name changes for 'My Computer' and other non-file357 objects (file dialogs)358 359 2002-06-11: Sander van Leeuwen <sandervl@innotek >360 - OLEAUT32, SHELL32:361 o Some Wine updates362 - KERNEL32: o Overlapped IO bugfixes363 o Thread TEB linking bugfix364 o Setup TEB structure before creating thread. Otherwise it's365 created too late and thread functions called by the app366 right after thread creation will fail.(e.g. SetThreadPriority)367 368 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon >369 - TOOLS\ODINBUG:370 o Added VX-REXX sources for OdinBug371 - DOC: o OdinBug.HLP update372 - BIN: o OdinBug.exe update373 374 2002-06-10: Sander van Leeuwen <sandervl@xs4all >375 - OLE32: o Fixed bug in StgStreamImpl_Seek376 - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible377 (fixes crash in Java 1.4 install)378 - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for379 overlapped IO380 381 2002-06-09: knut st. osmundsen <bird@anduin >382 - Makefiles:383 o Exclude dummy.c from the dependencies.384 385 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon >386 - KERNEL32: o Corrections for Austrian NLS file387 388 2002-06-09: Sander van Leeuwen <sandervl@xs4all >389 - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message390 communication391 (fixes OpenOffice 1.0 crash during install (at 76%))392 o Skip window handle 0x68000000 (otherwise more difficult393 to compare logs with old builds)394 o Logging changes for comparing source file names395 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed396 (fixes Java 1.4 installation (first dialog))397 - COMDLG32: o GetFileDialog95W fix (check if template name is string or398 numeric id)399 (fixes OpenOffice 1.0 file open dialog crash)400 - WININET: o Fixed shlwapi imports401 - OLE32: o Resync with latest Wine402 - OLEAUT32: o Resync with latest Wine403 404 2002-06-08: Sander van Leeuwen <sandervl@xs4all >405 - SHELL32: o Moved resource files to subdir406 - COMDLG32: o Compile fix + moved resource files to subdir407 - KERNEL32: o Export OSLibDosDevIOCtl408 - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout409 (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD410 package from May 2001 (or newer) or recent JJSCDROM)411 - DDRAW: o Fixed clipping bug with non-frame windows412 o Print FOURCCs supported by Dive413 414 2002-06-08: knut *st. osmundsen <bird@anduin >415 - TOOLS\WRC:o Compile fix416 417 2002-06-07: Sander van Leeuwen <sandervl@innotek >418 - SHLWAPI: o Resync with latest Wine & added LGPL license419 - SHELL32: o Some updates for upcoming resync420 421 2002-06-06: knut st. osmundsen <bird@anduin >422 - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.423 424 2002-06-06: Mark Paulus <mark.paulus@wcom >425 - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when426 opening an existing file427 428 2002-06-06: Sander van Leeuwen <sandervl@innotek >429 - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls430 431 2002-06-06: Platon Fomichev <platon@innotek >432 - SHELL32: o Always expand root when initializing treeview433 o Do not sort tree in TVN_ITEMEXPANDINGA434 435 2002-06-05: Sander van Leeuwen <sandervl@innotek >436 - WINMM: o Put back original DART buffer size selection code437 (new one messes up e.g. RealPlayer)438 o Postpone recording when waveInStart called without439 any buffers in the queue. Start in during next440 waveInAddBuffer call.441 o Fixed DART waveout resume442 443 2002-06-04: Sander van Leeuwen <sandervl@innotek >444 - USER32: o Fix for AltGr key combinations445 - WINMM: o Updates for wave playback446 447 2002-06-03: Sander van Leeuwen <sandervl@innotek >448 - USER32, OLE32:449 o Drag and drop fixes450 - BIN\ODINBUG:451 o Update by Herwig Bauernfeind (0.5.6a)452 - DOC\MANUAL:453 o Users manual sources by Herwig Bauernfeind454 - DOC: o Added odinuser.inf by Herwig Bauernfeind455 456 2002-06-02: Sander van Leeuwen <sandervl@innotek >457 - USER32\CONTROLS:458 o New dll for user32 controls (latest Wine)459 (not activated, not finished (resync))460 - USER32: o Moved drag & drop code to seperate file461 o Updates for OLE drag 'n drop462 - KERNEL32: o LogException: check lockcount before changing it on entry463 (it is not always > 0 -> previously caused hang in exception464 handler (zombie process))465 - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W466 - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)467 (todo: Odin app -> WPS)468 469 2002-06-01: Sander van Leeuwen <sandervl@innotek >470 - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve471 performance472 o DragQueryFileW fix473 - WINMM: o Implemented minimal control change notification474 - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview475 control (probably not 100% correct)476 - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)477 (works in notepad; drag file object from WPS into notepad478 window)479 480 2002-05-31: Sander van Leeuwen <sandervl@innotek >481 - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)482 - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos483 (with LLMHF_INJECTED flag set)484 485 2002-05-31: Platon Fomichev <platon@innotek >486 - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)487 488 2002-05-30: Sander van Leeuwen <sandervl@innotek >489 - WINMM: o Mixer fixes490 491 2002-05-30: Platon Fomichev <platon@innotek >492 - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)493 (seems to be done in windows)494 495 2002-05-29: Sander van Leeuwen <sandervl@innotek >496 - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)497 (fixes AbiWord keyboard input)498 - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes499 o mixerGetLineInfoW fix500 - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA501 wrt cx parameter (when set to zero)502 (fixes properties dialog of sndvol32.exe (windows mixer app))503 o Updated status control to latest Wine & applied two504 bugfixes (already sent to wine-patches)505 506 2002-05-29: Platon Fomichev <platon@innotek >507 - USER32: o GetAsyncKeyState fix for VK_MENU508 - COMCTL32: o Status control fix for resize with CCS_NORESIZE style509 (invalidate control to prevent leftovers of size grip)510 511 2002-05-28: Sander van Leeuwen <sandervl@innotek >512 - REGSVR32: o Fixed startup513 - WINMM: o Completely implemented mixerSetControlDetails514 o Mixer updates515 o Support added for master volume (ioctl90 mode)516 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)517 o Wave recording now works518 519 2002-05-28: Platon Fomichev <platon@innotek >520 - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage521 - KERNEL32: o Debugger updates522 523 2002-05-27: Sander van Leeuwen <sandervl@innotek >524 - WINMM: o Completely implemented mixerGetControlDetailsA/W525 o Mixer updates526 - TESTAPP\MIXER:527 o Test application for mixer functions528 529 2002-05-25: Sander van Leeuwen <sandervl@innotek >530 - WINMM: o Fix for soundcards without ioctl90 mixer support531 o Many mixer updates532 533 2002-05-24: Sander van Leeuwen <sandervl@innotek >534 - WINMM: o More mixer updates (not yet finished)535 536 2002-05-23: Yuri Dario <mc6530@mclink >537 - USER32: o Don't beep when unable to find menu item when alt key pressed538 539 2002-05-23: Sander van Leeuwen <sandervl@innotek >540 - WINMM: o Mixer updates (not yet finished)541 542 2002-05-23: Platon Fomichev <platon@innotek >543 - USER32: o Keyboard fixes for right alt & right shift544 545 2002-05-22: Sander van Leeuwen <sandervl@innotek >546 - KERNEL32: o CreateThread bugfix (returned thread id incorrect)547 (fixes RealPlayer (PostThreadMessage))548 - WINMM: o Added debug wrappers549 o Started with mixer api rewrite550 551 2002-05-21: Sander van Leeuwen <sandervl@innotek >552 - KERNEL32: o Round stack top & bottom (TIB) to page boundary553 554 2002-05-20: Sander van Leeuwen <sandervl@innotek >555 - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)556 since a dll that depends on dlls with an exitlist handler557 doesn't get properly unloaded (initterm not called for unload558 nor for a 2nd load)559 560 2002-05-20: Dmitry Froloff <froloff@os2 >561 - KERNEL32: o Removed 64 MB memory mapped file limit562 o Fix for opening memory mapped file with size larger than563 the file size564 565 2002-05-17: Platon Fomichev <platon@innotek >566 - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE567 if window is not visible (fixes endless loop in568 property sheet when switching page with keyboard)569 570 2002-05-17: Sander van Leeuwen <sandervl@innotek >571 - OLEAUT32: o Resync with latest Wine572 - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL573 (IOCTL_CDROM_CURRENT_POSITION only)574 o IOCTL_CDROM_READ_TOC fix575 576 2002-05-16: knut st. osmundsen <bird@anduin >577 - MAKE: o Merged in latest changes.578 o Create NewConfigure.cmd for this environment.579 Try NewConfigure.cmd -? first.580 (Do 'nmake needed' before calling this. (stupid!))581 o Please note that this is still not 100% configured for582 Odin32 yet. But eventually it will replace the existing583 make system.584 585 2002-05-16: Sander van Leeuwen <sandervl@innotek >586 - NTDLL: o Partial resync with Wine587 - KERNEL32: o Export some functions for NTDLL588 o Fixed creation of logfile for executables on readonly volumes589 o RegQueryInfoKeyW fix590 o TLS fix for pe2lx images591 - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,592 SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE593 SystemParametersInfoA parameters594 - OLE32: o Resync with latest Wine595 596 2002-05-15: Sander van Leeuwen <sandervl@innotek >597 - DINPUT: o Made mouse code reentrant598 - GDI32: o Fix for EnumFontFamiliesA/W599 - SETUPAPI: o Resync with latest Wine600 601 2002-05-14: Sander van Leeuwen <sandervl@innotek >602 - KERNEL32: o CustForce2GBFileSize function added to force603 GetVolumeInformation to tell the app all partitions are FAT604 (2 GB file size limitation)605 - COMCTL32: o Merged property sheet control with latest Wine version606 607 2002-05-14: Platon Fomichev <platon@innotek >608 - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends609 SWP_FOCUS(DE)ACTIVATE message.610 611 2002-05-10: Platon Fomichev <platon@innotek >612 - KERNEL32: o Parallel port updates (use resource manager to query613 hardware configuration)614 615 2002-05-10: Sander van Leeuwen <sandervl@innotek >616 - KERNEL32: o Applications are now allowed to read physical disks or617 mounted partitions. Write access is only allowed for618 unmounted partitions or floppy disks.619 o Implemented GetFileSize for disk objects; corrected620 return value for some failures (-1)621 622 2002-05-09: Sander van Leeuwen <sandervl@innotek >623 - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &624 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS625 o Implemented GetVolumeNameForVolumeMountPointA/W for disk626 mountpoints (e.g. C:\)627 o Rewrote FindFirst/NextVolume to use LVM interface (if628 availabe; else fail)629 o Extended GetDriveType & GetVolumeInformation for volume630 names (instead of only disk names (e.g. C:\))631 o GetVolumeInformation change: keep file system name if632 NTFS or FAT32633 o Implemented unmounted volume and physical disk access634 635 2002-05-08: Sander van Leeuwen <sandervl@innotek >636 - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,637 toolbar, tab, pager, nativefont, imagelist code638 o Updated license (LGPL) for comctl32639 - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function640 in NTDLL)641 - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE642 - KERNEL32: o Implemented volume & volume mountpoint functions643 (win2k and up)644 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &645 IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS646 647 2002-05-08: Platon Fomichev <platon@innotek >648 - COMCTL32: o Merged listview control with latest Wine649 650 2002-05-07: Sander van Leeuwen <sandervl@innotek >651 - USER32: o WH_MOUSE_LL hook fixes652 653 2002-05-07: Platon Fomichev <platon@innotek >654 - USER32: o Listbox/combobox fix for MFC apps655 o SetParent doesn't change WS_CHILD style656 o Experimental change for getParent657 658 2002-05-07: knut st. osmundsen <bird@anduin >659 - CmdQd: o The daemon shouldn't inherit standard handles when started.660 (Hung the daily build, since we use tee to do logging.)661 662 2002-05-06: Sander van Leeuwen <sandervl@innotek >663 - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)664 665 2002-05-01: Sander van Leeuwen <sandervl@innotek >666 - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard667 translation array668
Note:
See TracChangeset
for help on using the changeset viewer.