Changeset 6144 for trunk/doc


Ignore:
Timestamp:
Jul 3, 2001, 8:52:59 AM (24 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog-2001

    r5877 r6144  
    1  /* $Id: ChangeLog-2001,v 1.5 2001-06-02 10:59:31 sandervl Exp $ */
     1 /* $Id: ChangeLog-2001,v 1.6 2001-07-03 06:52:59 sandervl Exp $ */
     2
     3 2001-06-27: knut st. osmundsen <kosmunds@csc.com>
     4    - fastdep:  o Fixed a coupla bugs; RC files parsing and .
     5                o Support for filenames with spaces.
     6
     7 2001-06-27: Sander van Leeuwen <sandervl@xs4all.nl>
     8    - KERNEL32: o CreateProcess fixes for finding executables
     9                o Don't load debug information
     10                o Minor fix for PROCESSOR_IDENTIFIER environment variable
     11                  (model & stepping were reversed)
     12                o Make sure stack is not aligned at 8 byte boundary before
     13                  calling executable entrypoint. Some applications rely on
     14                  this NT 'feature' and will suffer a performance penalty
     15                  otherwise.
     16                  (e.g. a certain Fortran compiler has startup code
     17                   that pushes an uneven number of dwords on the stack
     18                   before calling the Fortran code; FPU instructions
     19                   don't like to access memory at misaligned addresses)
     20
     21 2001-06-25: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     22    - include\odin.h:
     23                o Updated the EMX configuration so we can build WRC.exe
     24                  using this definition. This also includes the check and
     25                  calling convetions defined in windef.h.
     26                  Just note that gcc don't decorate the stdcall function
     27                  names like the other compilers.
     28                o Made the other compilers ignore __attribute__ so they
     29                  can compile WRC.exe as well.
     30                o Defined INLINE, inline and __inline__ so they all make
     31                  functions inline. (Someone should check this for Watcom C mode.)
     32
     33    - include\win\wine\unicode.h:
     34                o Added extern "C" so the unicode libraries are compilable as C code.
     35                  (kernel32\unicode was forced to compile as C++)
     36                o Removed inline workaround for C compilers. (Odin stuff)
     37                o Wrapped away static for those function which was declared as
     38                  both static and inline. (the compiler was so noisy)
     39
     40    - kernel32\unicode, kernel32:
     41                o Don't force it to C++.
     42                o Demangled the one export from unicode, get_char_typeW.
     43                o Curiosity: Made a minor correction to be able to compile
     44                             unicode.lib with EMX.
     45
     46    - OpenGL:   o mesa\macros.h has been changed to not #define INLINE if
     47                  allready defined.
     48                  Hence inlining is now enabled!
     49                  Concider this an experiment as we might run into VAC optimizer bugs...
     50                  People are encouraged to play games ;-)
     51
     52    - WRC:      o Use semicolon when reading include paths.
     53                  (This was what ALL I was supposed to fix today..)
     54                o Made it compile with VAC and EMX using standard Odin32 makefiles.
     55                  flex and bison is not needed normally. But when changes which
     56                  requires running of these are made, define HAVE_FLEX
     57                  and HAVE_BISON in your environment.
     58                o WRC is now removed and made as a 'needed_tool' together
     59                  with fastdep, impdef and the other stuff in the tools subdir.
     60                  NB. Be careful not to accidentally resurrects the /tools/bin/wrc.exe
     61                      archive! (May be we should rename the archive file later?)
     62
     63    - include\odin32.*.emx.mk:
     64                o Made it working for WRC.exe. (release and debug, not profiling)
     65                  Generats OMF. Linking using link386.
     66
     67    - include\odin32.tools.*.mk:
     68                o Disabled historic current directory inference rules and replaced
     69                  (some of them) with rules which puts object in OBJDIR.
     70                o Added precompiler inference rules. These are generate a *.pre-c
     71                  or *.pre-cpp file in the current directory containing the output
     72                  from the precompiler. (not implemented for watcom yet)
     73                  This is very useful in when you wanna check a declaration...
     74
     75 2001-06-25: Sander van Leeuwen <sandervl@xs4all.nl>
     76    - USER32:   o Minor WM_TIMER translation fix (weird check removed)
     77
     78 2001-06-24: Sander van Leeuwen <sandervl@xs4all.nl>
     79    - KERNEL32: o Rewrote CopyFile & MoveFile (just call DosCopy/Move)
     80                o Rewrote CreateDirectory & RemoveDirectory
     81                  (call DosCreateDir & DosDeleteDir)
     82                o Fix for HeapRealloc; recent HeapSize fix broke it
     83                  (listboxes empty)
     84
     85 2001-06-24: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     86    - src/makefile:
     87                o Added empty subdir oslib to the NOTTOBEMADE list.
     88                  (Please don't forget this when you create empty directories.
     89                   All subdirs excluding the one mentioned in the lists in
     90                   makefile is made. So don't add a new directory without
     91                   either a makefile in it or updating /src/makefile.)
     92
     93 2001-06-23: Sander van Leeuwen <sandervl@xs4all.nl>
     94    - KERNEL32: o HeapSize must return -1 for invalid pointer
     95                o Semaphore updates (finished; not activated yet)
     96                o Implemented IOCTL_CDROM_GET_VOLUME & IOCTL_CDROM_SET_VOLUME
     97
     98 2001-06-23: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     99    - KERNEL32: o Added Odin32 Spesific API for getting Odin build number.
     100                  (Requested by Yuri.)
     101
     102 2001-06-23: Achim Hasenmueller <achimha@innotek.de>
     103    - USER32:   o added OS/2 INI file access library (oslibprf)
     104                o changed SystemParametersInfoA to no longer use Open32
     105                o added more logging to GetMonitorInfoA/W
     106
     107 2001-06-22: Markus Montkowski <mmontkowski@gmx.de>
     108    - TWAIN_32: o Updated initterm.cpp to use OS/2 and not Win32 APIs when loading
     109                  the OS/2 twain DLL. needed because of kernel32 change 2001-06-12
     110
     111 2001-06-22: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     112    - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
     113
     114 2001-06-22: Sander van Leeuwen <sandervl@xs4all.nl>
     115    - USER32:   o Don't fill background of system icon if no system icon
     116                  is present (could be seen in os/2 look mode)
     117                o Reserved one window ulong (QWL_USER) for Odin apps (like Opera)
     118    - KERNEL32: o Semaphore updates (still not activated)
     119
     120 2001-06-21: Sander van Leeuwen <sandervl@xs4all.nl>
     121    - KERNEL32: o Semaphore updates (still not activated)
     122
     123 2001-06-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     124    - DDRAW:    o io_init1, io_init2 and io_exit1 forgot to save/restore EBX.
     125                  (Broke some apps when XF86Sup.sys is installed)
     126
     127 2001-06-20: Sander van Leeuwen <sandervl@xs4all.nl>
     128    - include\win\winioctl.h:
     129                o Added CDROM ioctls
     130    - KERNEL32: o Dummy CDROM ioctl support
     131
     132 2001-06-19: Sander van Leeuwen <sandervl@xs4all.nl>
     133    - KERNEL32: o Started with event, mutex & semaphore rewrite
     134                  (code not activated)
     135
     136 2001-06-18: Sander van Leeuwen <sandervl@xs4all.nl>
     137    - USER32:   o Added export entry for GetScrollBarInfo
     138                o Set ordinals for some exports
     139                o Correct size of SBS_SIZEBOX and SBS_SIZEGRIP scrollbars
     140                  during creation. (if too high or wide)
     141                  (CPOV bottom scrollbar now appears)
     142    - COMCTL32: o Wrong check in 6/17 comctl32 change
     143
     144 2001-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
     145    - KERNEL32: o Implemented IOCTL_SCSI_PASS_THROUGH_DIRECT storage ioctl
     146    - USER32:   o Fix for scrollbars with SBS_SIZEBOX or SBS_SIZEGRIP style
     147                  (use size specified in CreateWindow only if SBS_SIZEBOXTOPLEFTALIGN
     148                   nor SBS_SIZEBOXBOTTOMRIGHTALIGN style flags set)
     149                  (CPOV window now has the right size)
     150                o Allow WS_VISIBLE changes in SetWindowLong (GWL_STYLE)
     151                  (CPOV controls in bottom left corner now visible)
     152
     153 2001-06-17: Dietrich Teickner <Dietrich_Teickner@t-online.de>
     154    - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
     155                  (fixes crash in SpeedCommander 6)
     156                o Datetime control update with latest Wine code
     157
     158 2001-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
     159    - DDRAW:    o Save & Restore FS when calling io_init2
     160                o Partly implemented DrawEnumDisplayModes4
     161    - WINMM:    o Resume failed (during waveOutWrite) after underrun
     162                  (fixes audio error message in Atari Emulator)
     163    - KERNEL32: o Implemented IOCTL_DISK_GET_DRIVE_GEOMETRY & IOCTL_DISK_GET_MEDIA_TYPES
     164                o Allow direct sector reading from disk + changing read position
     165                  with SetFilePointer
     166                o 6/14 kernel32 changes broke dynamic loading of LX dlls; getHMOD
     167                  returned the wrong module handle
     168
     169 2001-06-15: Sander van Leeuwen <sandervl@xs4all.nl>
     170    - USER32:   o Removed yesterday's getControl dialog change.
     171                  (causes errors for certain installshield installers)
     172                o Add frame controls when app changes style flags (os/2 appearance)
     173                  (fixes missing titlebar when switching between maximized &
     174                   restored state for MDI windows in Opera)
     175    - KERNEL32: o PDB.exit_code is a pointer to an unknown structure in NT
     176                  Fill it with a pointer to a memory block with 8th byte set to 1.
     177                  (fixes crash in AssetAllocator install)
     178
     179 2001-06-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     180    - KERNEL32: o Correct bug in LoadLibrary which prevented dynamically
     181    - WIN32K:   o Forgot to close file on failure in ldrOpen. When Pe2Lx
     182                  failed (due to wrong subsystem), the file remained open.
     183
     184 2001-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
     185    - USER32:   o OSLibWinGetMsg: dispatch untranslated message immediately
     186                  and grab next one.
     187                o Manually change min/max/restore button states (OS/2 appearance)
     188                o Handle WM_SYSCOMMAND messages in frame window handler
     189                o Button fix (Wine bug)
     190                  Must clear WS_TABSTOP of control that is already unchecked or
     191                  else multiple control can have this style ((auto)radiobutton)
     192                  and GetNextDlgTabItem will return the wrong one.
     193                  Happens in Opera preferences dialog (multimedia) where all
     194                  autoradio buttons have the WS_TABSTOP style.
     195                o Added temporary workaround for Open32 crashes in Opera
     196
     197 2001-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
     198    - USER32:   o Corrected position of PM titlebar control
     199                o Added SetWindowAppearance function that can be used
     200                  by Odin32 apps to override the appearance (win32 or OS/2)
     201                  of windows.
     202                o Changed menu font for OS/2 appearance (bold)
     203                o Draw system menu icon ourselves (OS/2 appearance)
     204                o SetWindowText fix (OS/2 appearance)
     205                o WM_ERASEBKGND handling changes for dialogs
     206    - GDI32:    o CreateDIBSection bugfix (wrong ReleaseDC call)
     207
     208 2001-06-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     209    - WIN16LDR: o Made it compile with Watcom and MSC60.
     210                  Currently I can't link it with MSC60 form the DDK
     211                  since there is no window libraries there.
     212                  Watcom links fine. But the result is not tested.
     213    - VDMDBG:   o Stubbed this DLL. (It's used by the NT TaskMgr.)
     214                  (Documented in SDK, doc\misc\VDMDbg.Hlp. Which is included
     215                   in the NT sdk distributed with Watcom v11 - %WATCOM\sdk.)
     216    - Win32k/Pe2Lx:
     217                o Allowed loading of images using the NATIVE subsystem.
     218                o Added symbols for build 14.065F (2001-05-08) all kernels.
     219    - DailyBuild:
     220                o Moved Odin.ini to system32 in daily .zips.
     221    - NTDLL:    o Stubbed NtOpenThread.
     222
     223 2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
     224    - USER32:   o Partly fixed position of PM frame controls
     225                o FillRect fix for 0 brush
     226                o Workaround for windows with CS_CLASSDC class. Use same
     227                  mechanism as CS_OWNDC. (might not always work though)
     228                  No (easy) way to share a single DC between windows in PM.
     229                  (fixes paint problems in MED)
     230                o Use critical sections for local hooks; faster than
     231                  kernel mutex semaphore calls.
     232    - GDI32:    o SetDIBColorTable bugfix
     233    - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
     234                  (Winbench tries this)
     235    - ADVAPI32: o Pretend no services found in EnumServicesStatusA/W instead of
     236                  returning error.
     237                  (prevents crash in Winbench)
     238
     239 2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
     240    - USER32:   o Reference count bugfixes
     241    - GDI32:    o Added RGB555 conversion for CreateDIBitmap & SetDIBits
     242
     243 2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
     244    - USER32:   o SetParent bugfix (caused crashes in user32 after yesterday's changes)
     245                o Preliminary support added for OS/2 look and feel (not finished)
     246                  Odin.ini option:
     247                  [ODINSYSTEM]
     248                  OS2Look=1      (default = 0)
     249                  Creates OS/2 Titlebar, system menu & min/max/close buttons.
     250                  Also overrides UseWinColors option (uses OS/2 colors).
     251                  NOTE: Can interfere with windows applications that draw their
     252                        own custom titlebar. (e.g. RealPlayer)
     253    - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
     254                o CreateProcess: launch win16 loader for NE executables
     255    - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
     256                  Overrides GetVersion & WinExec functions to return the
     257                  version NT returns and to launch 32 bits programs (using pe).
     258                  (NOT FINISHED and not included in daily build)
     259    - PELDR:    o Execute win16 loader for NE executables.
     260
     261 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     262    - Win32API.h:
     263                o Added APIs required to compile user32.
     264    - src/makefile:
     265                o Relaxed the locks a little.
     266    - Win32k:   o Separated VAC3 and VAC36 output. (Please re-run configure!)
     267    - makefiles/VAC36:
     268                o Ignore ILIB warnings. (like those in the opengl tree)
     269
     270 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
     271    - USER32:   o Keep reference count for window and class objects.
     272                  Only delete the objects when nobody else is using them anymore.
     273                  (fixes crashes due to premature destruction of objects;
     274                   e.g. during Napster startup)
     275    - KERNEL32: o heap checking accidentally turned on during logging
     276                  (making the debug build extremely slow)
     277                o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
     278                  no apparent reason. Don't bail out when that happens, but try
     279                  to create the process anyway.
     280                  (fixes CreateProcess during Napster install)
     281                o Improved version of InterlockedIncrement & InterlockedDecrement
     282                  (borrowed from Wine)
     283
     284 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
     285    - KERNEL32: o WinExec fixes
     286                o Ported Wine's WritePrivateProfileSectionA
     287    - GDI32:    o DIB Section blits: translate all ROPs
     288                o GetDIBits fix; RGB conversion was not always performed;
     289                  now only for requested scanlines.
     290
     291 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
     292    - KERNEL32: o Optimizations for loading of PE images
     293
     294 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
     295    - OLE32:    o More VAC 3.6.5 compile fixes
     296
     297 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     298    - FastDep:  o Performance enh. Don't scan files more than 1 month older
     299                  than existing .depend file.
     300                o Optimized AVL tree sligtly by not performing two strcmp
     301                  on the same keys (but resuing the result from the first).
     302                o Improved dependencies genereated for OS/2 resource files.
     303                  (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
     304                o Code is now in sync with OS2Tools.
     305
     306 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
     307    - OLE32:    o VAC 3.6.5 compile fix
     308
     309 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
     310    - KERNEL32: o Fixed ordinal export resolving for PE executables
     311                  (SO52 complained about missing exports)
     312
     313 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
     314    - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
     315                  (fixes endless repainting loop in WinRAR 2.80)
     316    - KERNEL32: o Optimized ordinal lookup even more.
     317                  (6900 ordinal lookups takes (on average) 31 ms now instead
     318                   of 78)
     319
     320 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
     321    - KERNEL32: o Added driver dll plugin for custom device driver emulation
     322                  Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
     323                  that contain 'DllName' keys.
     324                  DllName contains the name of the plugin dll that exports
     325                  DrvOpen, DrvClose & DrvIOCtl.
     326                o Dispatch breakpoint exception to application (release build only)
     327                  Some nasty applications expect this.
     328
     329 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
     330    - USER32:   o Ported & fixed ScrollDC (Wine)
     331                  (fixes scrolling in Adobe Framemaker 5.5)
     332    - GDI32:    o RGB 565->555 conversion in GetDIBits
     333                o RGB 555->565 conversion in DIB Section sync
     334                o Sync DIB section in RealizePalette if any colors changed
     335                  (fixes PowerDVD colors)
     336
     337 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
     338    - Win32k/configure.cmd:
     339                o Corrected search for the VAC compiler.
     340                o Removed stupid messages when -w is specified.
     341
     342 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
     343    - COMDLG32: o fix crash due to uninitialized COM object pointer in
     344                  Win95 open file dialog browse mode
     345                o default to open mode in file dialog when the
     346                  OFN_NOVALIDATE mode is used
     347                  (fixes crash in FrameMaker 5.5 file dialog when opening
     348                   a file that has broken image references)
     349    - KERNEL32: o log both error and no error conditions for GetLastError
     350                  with default error level. Sometimes, we don't set an error
     351                  where we should so this logging information is important
     352                o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
     353                  CreateFileA to open a non existing file.
     354                  DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
     355                  Verified with Windows 2000 SP2
     356                  (makes Acrobat Distiller 5.0 startup and work!)
     357
     358 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
     359    - WINMM:    o Default waveout volume can be controlled by a key in odin.ini:
     360                  [WINMM]
     361                  DefVolume=50[0-100] Default waveout volume (default = 100)
     362    - USER32:   o ScrollDC fix for translating clip & scroll rectangles
     363                  (fixes scrolling in Adobe Framemaker 5.5)
     364
     365 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
     366    - USER32:   o Send WM_HELP if F1 pressed & no menu active
     367                o Disabled system hooks (only work in one process)
     368    - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
     369                  barely noticable with 'real' applications)
     370    - OLE32:    o Added OleLoadPictureEx stub
     371    - GDI32:    o GetDIBits fix for querying the bitmap information
     372                  WGSS returns 0, but we should return the nr of scan lines requested
     373                o GetDIBits fix for memory dcs. WGSS messes things up if
     374                  it's a memory DC.
     375                  (fixes lower right button in AIM's logon window when typing
     376                   in new name)
     377                o ExtTextOutA/W fix for filling rectangle with background color
     378                  only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
     379                  (fixes border between menu & button bar in Odin MFC app &
     380                   Acrobat Reader 4.05)
     381                o StretchDIBits fix for RGB555 bitmaps
     382                  (fixes pictures in pdf files shown by Acrobat Reader 4.05)
     383    - SHLWAPI:  o Added PathGetCharTypeA/W from Wine
     384
     385 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
     386    - KERNEL32: o benchmarked new experimental loader and reverted to
     387                  old but slightly optimized loader (processExport usually
     388                  outweighs processImport, so lookup is less valuable than
     389                  add to export list)
     390    - SHELL32:  o SIC_Initialize took extremely long to pre-initialize
     391                  its icon cache. Revert to on-demand loading of the icons,
     392                  speeds up loading of SHELL32 (therefore most apps)
     393                  by several seconds.
    2394
    3395 2001-05-31: Sander van Leeuwen <sandervl@xs4all.nl>
Note: See TracChangeset for help on using the changeset viewer.