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