Changeset 8975 for trunk/doc


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/doc/ChangeLog-2002

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