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