Changeset 8975 for trunk/changelog


Ignore:
Timestamp:
Aug 8, 2002, 7:37:04 PM (23 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r8972 r8975  
    1 /* $Id: changelog,v 1.2253 2002-08-08 17:11:24 sandervl Exp $ */
     1/* $Id: changelog,v 1.2254 2002-08-08 17:36:37 sandervl Exp $ */
    22
    33 2002-08-08: Platon Fomichev <platon@innotek   >
     
    3838                  PostThreadMessage
    3939
    40  2002-07-31: Sander van Leeuwen <sandervl@innotek   >
    41     - WINMM:    o Custom build function SetFixedWaveBufferSize added
    42                   (Call to tell winmm to expect simple fixed size buffers, so
    43                    it doesn't have to use very small DART buffers; this will
    44                    only work in very specific cases; it is not a good general
    45                    purpose solution)
    46     - USER32:   o Fixed MsgWaitForMultipleObjects implementation. Now returns
    47                   on arrival of proper window message. (previously only
    48                   for sent messages; it should also support posted msgs)
    49 
    50  2002-07-30: Platon Fomichev <platon@innotek   >
    51     - KERNEL32: o Unicode update
    52 
    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 support
    58     - WNASPI32: o Fixes for cdrom drive/burner recognition
    59 
    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; this
    63                   should take care of circular dependencies (crash while accessing
    64                   memory of a dll that has just been freed)
    65                 o Terminated & Resume suspended threads in ExitProcess to
    66                   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 ExitProcess
    69                 o Protect larger part of on-demand page load handler
    70                   (DosEnterCritSec)
    71     - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version
    72 
    73  2002-07-24: Platon Fomichev <platon@innotek   >
    74     - USER32:   o Pass on WM_PAINT of client window to default PM handler
    75                   if window is minimized
    76                   (fixes possible endless loop of WM_PAINT messages when
    77                    minimizing a window)
    78 
    79  2002-07-23: Sander van Leeuwen <sandervl@innotek   >
    80     - KERNEL32: o Enhanced CreateWin32PeLdrExe
    81                 o Enhanced PE loader class to support files with PE image
    82                   starting at an offset != 0 (custom build)
    83                 o Fixes for memory map view with offset
    84     - PELDR:    o Modified for new CreateWin32PeLdrExe
    85 
    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 available
    91                 o Interface changes for shared memory allocation
    92 
    93  2002-07-19: Sander van Leeuwen <sandervl@innotek   >
    94     - ODINCRT:  o Dos*CriticalSection fixes
    95 
    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 updates
    101                 o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap,
    102                   CreateDIBitmap)
    103                 o DEFAULT_GUI_FONT is a system object (applications are not allowed
    104                   to delete it)
    105                 o Dynamically allocate GDI handle array to prevent waste of
    106                   shared memory (as it is a private array)
    107     - USER32:   o Updates for new handle management
    108                 o System pens & brushes can't be deleted by applications
    109     - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory
    110                 o Allocate fake PE headers in high memory
    111                 o Allocate win32 & code heap memory in 64kb chunks
    112                 o Allocate PE image memory at 64kb boundary
    113                 o Dynamically allocate handlemanager array to prevent waste of
    114                   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 builds
    118                 o Disabled 64kb alignment in VirtualAlloc for now
    119                   (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 window
    124 
    125  2002-07-12: Sander van Leeuwen <sandervl@innotek   >
    126     - WINMM:    o Changed init order; do not check for MMPM2 presence if
    127                   wave audio was already disabled
    128                 o Minor cleanup for mixer code
    129                 o Touch GETAPIMAP array to force OS/2 to make it valid; some
    130                   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 window
    135                   handle from OS/2 and not assume a constant handle value
    136 
    137  2002-07-08: Sander van Leeuwen <sandervl@innotek   >
    138     - USER32:   o Changed SetFocus fix; only disallow focus change for minimized
    139                   and disabled windows.
    140                 o Put back focus fix from 2001-11-20
    141 
    142  2002-07-06: Sander van Leeuwen <sandervl@innotek   >
    143     - KERNEL32: o Com overlapped IO changes for reference counts
    144 
    145  2002-07-05: Platon Fomichev <platon@innotek   >
    146     - USER32:   o SetFocus not allowed on invisible windows
    147 
    148  2002-07-05: Sander van Leeuwen <sandervl@innotek   >
    149     - KERNEL32: o Dump exception log to except.log in system32 directory
    150                 o Added functions to customize logging (filename +
    151                   enable/disable
    152                 o Keep reference count for overlapped IO objects to avoid
    153                   premature destruction
    154 
    155  2002-07-03: Sander van Leeuwen <sandervl@innotek   >
    156     - WS2_32:   o Added WSASendDisconnect stub
    157     - 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 Fills
    160 
    161  2002-07-02: Sander van Leeuwen <sandervl@innotek   >
    162     - DDRAW:    o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC
    163                   (problem located in GDI32)
    164 
    165  2002-07-01: Sander van Leeuwen <sandervl@innotek   >
    166     - USER32:   o Translate & dispatch unprocessed messages in IsDialogMessageA/W
    167                   (Wine doesn't do this, but experiments in Windows 2000 show
    168                    different behaviour)
    169                 o Edit control: don't beep when receiving Enter (single line
    170                   control)
    171     - DDRAW:    o Color fill bugfixes:
    172                   - fill up to height, not height - 1
    173                   - check for single pixel line fills -> avoid heap corruption
    174                 o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC
    175                 o SurfReleaseDC; initialize BITMAPINFO structure properly
    176                   before calling GetDIBits + fix for 16 bpp GetDIBits
    177                   (which always returns data in RGB555 format in our case)
    178                 o Fill16on16: convert RGB555 color value to RGB565
    179                 o Mark surface as changed (ChangeUniquenessValue) after
    180                   blit & fill
    181     - KERNEL32: o Print win32 module name when exception occurs
    182 
    183  2002-06-30: Sander van Leeuwen <sandervl@innotek   >
    184     - KERNEL32: o WriteFile for standard out: convert line feed without
    185                   carriage return into CR+LF
    186                 o VirtualFree; don't allow app to decommit stack pages
    187                   (VAC runtime uses last stack page to store some internal
    188                    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 child
    192                   dialogs can receive input focus (CVP wizard dialogs)
    193                 o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
    194                   flag is set (otherwise the hook will be called twice)
    195                 o Call message filter hook in IsDialogMessageA/W
    196     - 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 (apparently
    200                   done in windows)
    201 
    202  2002-06-27: Sander van Leeuwen <sandervl@innotek   >
    203     - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
    204                   is valid. (COMDLG32_UpdateCurrentDir)
    205                   (fixes crash in file dialog when double clicking on abstract
    206                    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 returned
    212                   by DosFindFirst, DosFindNext, DosQueryPathInfo &
    213                   DosQueryFileInfo are in local time; we must convert them
    214                   to file time (UTC)
    215                 o Fixed bug in OSLibGetDriveType; broke GetDriveType for
    216                   floppy drives
    217                 o Fixed CreateFile for disks
    218                 o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
    219                   fail if no disk present or when the media has been changed
    220                 o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
    221                   always succeed
    222                 o Don't fail CreateFile for disk when DosOpen fails with
    223                   a sharing violation. Apparently this is allowed in windows;
    224                   although you can't do much with the handle. (limited to
    225                   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() and
    230                   GenerateConsoleCtrlEvent().
    231                   Note. The last part of it is known to fail since the
    232                   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 into
    241                   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 string
    245                   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 change
    249 
    250  2002-06-25: knut st. osmundsen <bird@anduin    >
    251     - UNICODE:  o Fancy 16 step fallthru case isn't cool if the src length
    252                   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 initializing
    258                   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 fix
    267 
    268  2002-06-20: Platon Fomichev <platon@innotek   >
    269     - COMCTL32: o Don't erase background for ownerdrawn listview controls
    270                   (LISTVIEW_RefreshReport)
    271 
    272  2002-06-20: Sander van Leeuwen <sandervl@innotek   >
    273     - OLE32:    o Drag 'n drop fix
    274     - USER32:   o Drag 'n drop fix
    275                 o Enabled drag 'n drop again
    276                 o Added DisableDragDrop
    277 
    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 do
    281                   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 when
    289                   they've been executing too long. This is required in order to
    290                   run the testsuite without human interaction.
    291 
    292  2002-06-19: Sander van Leeuwen <sandervl@innotek   >
    293     - OLE32:    o Drag 'n drop fixes
    294 
    295  2002-06-18: Sander van Leeuwen <sandervl@innotek   >
    296     - DINPUT:   o SysMouseAImpl_GetDeviceData: check if internal dinput
    297                   mouse state is out of sync and update if necessary
    298 
    299  2002-06-18: knut st. osmundsen <bird@anduin    >
    300     - Win32k:   o Fixed compiler warning which caused the M$ compiler
    301                   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 for
    305                   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_SZ
    318                 o Removed: LoadLibraryExA: expand library filename
    319                   (doesn't happen in Windows)
    320     - INSTALL:  o Create object for Odin User's Manual + fixed object
    321                   creation for OdinBug Manual
    322                 o Include OdinBug.HLP & OdinUser.INF
    323     - SHELL32:  o Fixed desktop object creation during win32 app install
    324 
    325  2002-06-15: Sander van Leeuwen <sandervl@innotek   >
    326     - SETUPAPI: o Wine resync + added debug wrappers
    327     - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
    328                 o Check for NULL parameters in GetFullPathNameW
    329                 o hmfile.cpp: ParsePath fix; check boundary
    330                 o LoadLibraryExA: expand library filename; might contain
    331                   environment variables
    332                 o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
    333                   registry.dll doesn't like this type for some reason
    334     - USER32:   o Do proper filtering for PeekMessage
    335     - NTDLL:    o Forward heap functions to kernel32
    336     - QUARTZ:   o Removed old code (stub dll now)
    337     - AVIFIL32: o Resync with Wine
    338     - INSTALL:  o Add MS Shell Dlg->WarpSans font conversion
    339 
    340  2002-06-13: Sander van Leeuwen <sandervl@innotek   >
    341     - USER32:   o SetCustomWndHandleSemName added to override shared semaphore
    342                   name used to synchronize global window handle array access
    343                   (to avoid name clash with Odin)
    344     - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
    345                   name used to synchronize global memory map list access
    346                   (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 set
    350 
    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-file
    357                   objects (file dialogs)
    358 
    359  2002-06-11: Sander van Leeuwen <sandervl@innotek   >
    360     - OLEAUT32, SHELL32:
    361                 o Some Wine updates
    362     - KERNEL32: o Overlapped IO bugfixes
    363                 o Thread TEB linking bugfix
    364                 o Setup TEB structure before creating thread. Otherwise it's
    365                   created too late and thread functions called by the app
    366                   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 OdinBug
    371     - DOC:      o OdinBug.HLP update
    372     - BIN:      o OdinBug.exe update
    373 
    374  2002-06-10: Sander van Leeuwen <sandervl@xs4all   >
    375     - OLE32:    o Fixed bug in StgStreamImpl_Seek
    376     - USER32:   o Don't repaint groupbox in WM_SETFONT if control isn't visible
    377                   (fixes crash in Java 1.4 install)
    378     - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
    379                   overlapped IO
    380 
    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 file
    387 
    388  2002-06-09: Sander van Leeuwen <sandervl@xs4all   >
    389     - USER32:   o SendMessageTimeoutA/W fixes for inter-process/thread message
    390                   communication
    391                   (fixes OpenOffice 1.0 crash during install (at 76%))
    392                 o Skip window handle 0x68000000 (otherwise more difficult
    393                   to compare logs with old builds)
    394                 o Logging changes for comparing source file names
    395                 o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
    396                   (fixes Java 1.4 installation (first dialog))
    397     - COMDLG32: o GetFileDialog95W fix (check if template name is string or
    398                   numeric id)
    399                   (fixes OpenOffice 1.0 file open dialog crash)
    400     - WININET:  o Fixed shlwapi imports
    401     - OLE32:    o Resync with latest Wine
    402     - OLEAUT32: o Resync with latest Wine
    403 
    404  2002-06-08: Sander van Leeuwen <sandervl@xs4all   >
    405     - SHELL32:  o Moved resource files to subdir
    406     - COMDLG32: o Compile fix + moved resource files to subdir
    407     - KERNEL32: o Export OSLibDosDevIOCtl
    408     - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
    409                   (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
    410                    package from May 2001 (or newer) or recent JJSCDROM)
    411     - DDRAW:    o Fixed clipping bug with non-frame windows
    412                 o Print FOURCCs supported by Dive
    413 
    414  2002-06-08: knut *st. osmundsen <bird@anduin    >
    415     - TOOLS\WRC:o Compile fix
    416 
    417  2002-06-07: Sander van Leeuwen <sandervl@innotek   >
    418     - SHLWAPI:  o Resync with latest Wine & added LGPL license
    419     - SHELL32:  o Some updates for upcoming resync
    420 
    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) when
    426                   opening an existing file
    427 
    428  2002-06-06: Sander van Leeuwen <sandervl@innotek   >
    429     - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
    430 
    431  2002-06-06: Platon Fomichev <platon@innotek   >
    432     - SHELL32:  o Always expand root when initializing treeview
    433                 o Do not sort tree in TVN_ITEMEXPANDINGA
    434 
    435  2002-06-05: Sander van Leeuwen <sandervl@innotek   >
    436     - WINMM:    o Put back original DART buffer size selection code
    437                   (new one messes up e.g. RealPlayer)
    438                 o Postpone recording when waveInStart called without
    439                   any buffers in the queue. Start in during next
    440                   waveInAddBuffer call.
    441                 o Fixed DART waveout resume
    442 
    443  2002-06-04: Sander van Leeuwen <sandervl@innotek   >
    444     - USER32:   o Fix for AltGr key combinations
    445     - WINMM:    o Updates for wave playback
    446 
    447  2002-06-03: Sander van Leeuwen <sandervl@innotek   >
    448     - USER32, OLE32:
    449                 o Drag and drop fixes
    450     - BIN\ODINBUG:
    451                 o Update by Herwig Bauernfeind (0.5.6a)
    452     - DOC\MANUAL:
    453                 o Users manual sources by Herwig Bauernfeind
    454     - DOC:      o Added odinuser.inf by Herwig Bauernfeind
    455 
    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 file
    461                 o Updates for OLE drag 'n drop
    462     - KERNEL32: o LogException: check lockcount before changing it on entry
    463                   (it is not always > 0 -> previously caused hang in exception
    464                    handler (zombie process))
    465     - SHELL32:  o Added automatic asii/unicode conversion to DragQueryFileA/W
    466     - 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 improve
    471                   performance
    472                 o DragQueryFileW fix
    473     - WINMM:    o Implemented minimal control change notification
    474     - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
    475                   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 notepad
    478                    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 SetCursorPos
    483                   (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 fixes
    490 
    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) fixes
    499                 o mixerGetLineInfoW fix
    500     - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
    501                   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 two
    504                   bugfixes (already sent to wine-patches)
    505 
    506  2002-05-29: Platon Fomichev <platon@innotek   >
    507     - USER32:   o GetAsyncKeyState fix for VK_MENU
    508     - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
    509                   (invalidate control to prevent leftovers of size grip)
    510 
    511  2002-05-28: Sander van Leeuwen <sandervl@innotek   >
    512     - REGSVR32: o Fixed startup
    513     - WINMM:    o Completely implemented mixerSetControlDetails
    514                 o Mixer updates
    515                 o Support added for master volume (ioctl90 mode)
    516                 o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
    517                 o Wave recording now works
    518 
    519  2002-05-28: Platon Fomichev <platon@innotek   >
    520     - USER32:   o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
    521     - KERNEL32: o Debugger updates
    522 
    523  2002-05-27: Sander van Leeuwen <sandervl@innotek   >
    524     - WINMM:    o Completely implemented mixerGetControlDetailsA/W
    525                 o Mixer updates
    526     - TESTAPP\MIXER:
    527                 o Test application for mixer functions
    528 
    529  2002-05-25: Sander van Leeuwen <sandervl@innotek   >
    530     - WINMM:    o Fix for soundcards without ioctl90 mixer support
    531                 o Many mixer updates
    532 
    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 pressed
    538 
    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 shift
    544 
    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 wrappers
    549                 o Started with mixer api rewrite
    550 
    551  2002-05-21: Sander van Leeuwen <sandervl@innotek   >
    552     - KERNEL32: o Round stack top & bottom (TIB) to page boundary
    553 
    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 handler
    557                   doesn't get properly unloaded (initterm not called for unload
    558                   nor for a 2nd load)
    559 
    560  2002-05-20: Dmitry Froloff <froloff@os2   >
    561     - KERNEL32: o Removed 64 MB memory mapped file limit
    562                 o Fix for opening memory mapped file with size larger than
    563                   the file size
    564 
    565  2002-05-17: Platon Fomichev <platon@innotek   >
    566     - USER23:   o Experimental DIALOG_IsAccelerator fix; return FALSE
    567                   if window is not visible (fixes endless loop in
    568                   property sheet when switching page with keyboard)
    569 
    570  2002-05-17: Sander van Leeuwen <sandervl@innotek   >
    571     - OLEAUT32: o Resync with latest Wine
    572     - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
    573                   (IOCTL_CDROM_CURRENT_POSITION only)
    574                 o IOCTL_CDROM_READ_TOC fix
    575 
    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 for
    582                   Odin32 yet. But eventually it will replace the existing
    583                   make system.
    584 
    585  2002-05-16: Sander van Leeuwen <sandervl@innotek   >
    586     - NTDLL:    o Partial resync with Wine
    587     - KERNEL32: o Export some functions for NTDLL
    588                 o Fixed creation of logfile for executables on readonly volumes
    589                 o RegQueryInfoKeyW fix
    590                 o TLS fix for pe2lx images
    591     - USER32:   o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
    592                   SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
    593                   SystemParametersInfoA parameters
    594     - OLE32:    o Resync with latest Wine
    595 
    596  2002-05-15: Sander van Leeuwen <sandervl@innotek   >
    597     - DINPUT:   o Made mouse code reentrant
    598     - GDI32:    o Fix for EnumFontFamiliesA/W
    599     - SETUPAPI: o Resync with latest Wine
    600 
    601  2002-05-14: Sander van Leeuwen <sandervl@innotek   >
    602     - KERNEL32: o CustForce2GBFileSize function added to force
    603                   GetVolumeInformation to tell the app all partitions are FAT
    604                   (2 GB file size limitation)
    605     - COMCTL32: o Merged property sheet control with latest Wine version
    606 
    607  2002-05-14: Platon Fomichev <platon@innotek   >
    608     - USER32:   o Don't send WM_WINDOWPOSCHANGING message when PM sends
    609                   SWP_FOCUS(DE)ACTIVATE message.
    610 
    611  2002-05-10: Platon Fomichev <platon@innotek   >
    612     - KERNEL32: o Parallel port updates (use resource manager to query
    613                   hardware configuration)
    614 
    615  2002-05-10: Sander van Leeuwen <sandervl@innotek   >
    616     - KERNEL32: o Applications are now allowed to read physical disks or
    617                   mounted partitions. Write access is only allowed for
    618                   unmounted partitions or floppy disks.
    619                 o Implemented GetFileSize for disk objects; corrected
    620                   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_EXTENTS
    625                 o Implemented GetVolumeNameForVolumeMountPointA/W for disk
    626                   mountpoints (e.g. C:\)
    627                 o Rewrote FindFirst/NextVolume to use LVM interface (if
    628                   availabe; else fail)
    629                 o Extended GetDriveType & GetVolumeInformation for volume
    630                   names (instead of only disk names (e.g. C:\))
    631                 o GetVolumeInformation change: keep file system name if
    632                   NTFS or FAT32
    633                 o Implemented unmounted volume and physical disk access
    634 
    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 code
    638                 o Updated license (LGPL) for comctl32
    639     - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
    640                   in NTDLL)
    641     - NTDLL:    o RtlAddAccessAllowedAce stub always returns TRUE
    642     - KERNEL32: o Implemented volume & volume mountpoint functions
    643                   (win2k and up)
    644                 o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
    645                   IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
    646 
    647  2002-05-08: Platon Fomichev <platon@innotek   >
    648     - COMCTL32: o Merged listview control with latest Wine
    649 
    650  2002-05-07: Sander van Leeuwen <sandervl@innotek   >
    651     - USER32:   o WH_MOUSE_LL hook fixes
    652 
    653  2002-05-07: Platon Fomichev <platon@innotek   >
    654     - USER32:   o Listbox/combobox fix for MFC apps
    655                 o SetParent doesn't change WS_CHILD style
    656                 o Experimental change for getParent
    657 
    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 keyboard
    667                   translation array
    668 
Note: See TracChangeset for help on using the changeset viewer.