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