| 1 |  /* $Id: ChangeLog-2001,v 1.11 2001-12-08 10:13:41 sandervl Exp $ */
 | 
|---|
| 2 | 
 | 
|---|
| 3 |  2001-11-30: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 4 |     - KERNEL32: o heapstring.cpp: improvement on HEAP_malloc, HEAP_free,
 | 
|---|
| 5 |                   HEAP_realloc, HEAP_size
 | 
|---|
| 6 |                 o acceleration on GetCurrentThreadId()
 | 
|---|
| 7 |     - SHELL32:  o use HEAP_xxx functions for frequently called APIs
 | 
|---|
| 8 |     - ODINPROF: o Note: SET PROFILEHOOKS=1 before doing NMAKE PROFILE=1
 | 
|---|
| 9 |                   This will enable the profiler in ODINCRTP.DLL
 | 
|---|
| 10 |                   (use release build ODINPROF.DLL), generates (pid).prof
 | 
|---|
| 11 |                   on process exit.
 | 
|---|
| 12 |     - *         o fixed out-of-scope TRACE,FIXME,WARN macros
 | 
|---|
| 13 | 
 | 
|---|
| 14 |  2001-11-30: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 15 |     - USER32:   o Changed menu hilite background to the color used by PM
 | 
|---|
| 16 |                   (OS/2 look)
 | 
|---|
| 17 |                 o DIALOG_IsAccelerator resync (Wine)
 | 
|---|
| 18 |     - KERNEL32: o Partly implemented PurgeComm
 | 
|---|
| 19 |     - *         o Removed all the TRACE, FIXME & WARN redefinitions
 | 
|---|
| 20 |                   (temporary hack for better logging; didn't affect the release
 | 
|---|
| 21 |                    build anyway)
 | 
|---|
| 22 |                   TODO: we need better logging in Wine code
 | 
|---|
| 23 | 
 | 
|---|
| 24 |  2001-11-29: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 25 |     - KERNEL32: o Split dosdevice.cpp from stubs.cpp
 | 
|---|
| 26 |                   (DefineDosDevice, QueryDosDevice)
 | 
|---|
| 27 |                 o Fixed CDROM ioctls and disk access
 | 
|---|
| 28 |                   (previous fix failed or cause possible regression)
 | 
|---|
| 29 |     - OLEAUT32: o olepicture.c: fixed null pointer exception
 | 
|---|
| 30 |                   cause: our TRACE, FIXME, etc. debugtools macros all
 | 
|---|
| 31 |                   go out of scope of a braceless if-statement before!
 | 
|---|
| 32 |                   Therefore, we're getting false (error) messages or
 | 
|---|
| 33 |                   even crashes. (to be fixed)
 | 
|---|
| 34 | 
 | 
|---|
| 35 |  2001-11-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 36 |     - COMCTL32: o Listview: invalidate entire item for ownerdraw control
 | 
|---|
| 37 |                             (don't exclude report margin)
 | 
|---|
| 38 |     - KERNEL32: o Fixed disk access (yesterday's changes broke it)
 | 
|---|
| 39 |     - SHELL32:  o Removed wrong call to ctordtorInit that caused the disk
 | 
|---|
| 40 |                   access problems in the custom build.
 | 
|---|
| 41 | 
 | 
|---|
| 42 |  2001-11-28: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 43 |     - KERNEL32: o fixes in ::CreateFile calls (return codes must be Win32)
 | 
|---|
| 44 |                 o fixes in symbolic link management
 | 
|---|
| 45 |                 o marked some important TBDs for phys. disk mgmt!
 | 
|---|
| 46 |                 o fixed HMCOMM to accept (what a good idea)
 | 
|---|
| 47 |                   \\.\COM1, COM1, COM1: but not "\\.\COM1:" (NT4SP6)
 | 
|---|
| 48 |                 o added support for AUX->COM1, PRN->LPT1, CON->CONOUT$
 | 
|---|
| 49 |                 o added NUL device
 | 
|---|
| 50 | 
 | 
|---|
| 51 |  2001-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 52 |     - KERNEL32: o WaitCommEvent fixes (must reset overlapped event semaphore &
 | 
|---|
| 53 |                   store result of overlapped operation in parameter)
 | 
|---|
| 54 |                 o Removed symbolic link for \\.\. Adding this is a very bad idea
 | 
|---|
| 55 |                   as CreateFile calls for device driver will be routed to files.
 | 
|---|
| 56 |                   Probably causes even more problems.
 | 
|---|
| 57 |     - INCLUDE:  o winbase.h: CBR_xxxx definitions wrong
 | 
|---|
| 58 | 
 | 
|---|
| 59 |  2001-11-27: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 60 |     - KERNEL32: o added \\.\ as standard symbolic link to the local namespace
 | 
|---|
| 61 |                   This is the clean way for alternative device names,
 | 
|---|
| 62 |                   local kludges in the device handlers should be avoided.
 | 
|---|
| 63 |                 o fix in name resolver
 | 
|---|
| 64 | 
 | 
|---|
| 65 |  2001-11-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 66 |     - WSOCK32:  o Missing FS wrapper macros added
 | 
|---|
| 67 |     - KERNEL32: o Accept \\.\COMx as name for COM ports
 | 
|---|
| 68 |     - USER32:   o EnumChildWindow bugfix
 | 
|---|
| 69 | 
 | 
|---|
| 70 |  2001-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 71 |     - KERNEL32: o Implemented CancelIo & GetOverlappedResult for serial comm
 | 
|---|
| 72 |                 o Preliminary work on overlapped IO for serial comm
 | 
|---|
| 73 | 
 | 
|---|
| 74 |  2001-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 75 |     - KERNEL32: o Custom build fix; check for double call for inittermKernel32
 | 
|---|
| 76 |                 o More informative message when non-existing api is called.
 | 
|---|
| 77 |                   Now displays dll + function name or ordinal.
 | 
|---|
| 78 | 
 | 
|---|
| 79 |  2001-11-23: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 80 |     - KERNEL32: o minor work in parallel port support (ioctls)
 | 
|---|
| 81 |                 o "Kernel Object Namespace" -> handlenames.cpp introduced
 | 
|---|
| 82 |                   (yet inactive)
 | 
|---|
| 83 | 
 | 
|---|
| 84 |  2001-11-23: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 85 |     - Misc. Makefiles: o Corrected the descriptions (on request from Ye][ow).
 | 
|---|
| 86 | 
 | 
|---|
| 87 |  2001-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 88 |     - KERNEL32: o Check volume label during IOCTL_DISK_GET_DRIVE_GEOMETRY to
 | 
|---|
| 89 |                   see if the media has been changed or removed.
 | 
|---|
| 90 |                 o Implemented WriteFile & GetFileType for disk handles
 | 
|---|
| 91 |                   (write currently only allowed for drive A)
 | 
|---|
| 92 |     - DSOUND:   o Renamed DllGetClassObject & DllCanUnloadNow to avoid name
 | 
|---|
| 93 |                   conflicts in the custom build.
 | 
|---|
| 94 | 
 | 
|---|
| 95 |  2001-11-22: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 96 |     - ODINPROF: o initial version
 | 
|---|
| 97 |                   PROFILE images using ODINCRTP generate a <pid>.prof file
 | 
|---|
| 98 |                   (the optimized release build of ODINPROF should be used)
 | 
|---|
| 99 |                   No source code modification required.
 | 
|---|
| 100 |                   Problem: mapsym seems to corrupt kernel32.sym
 | 
|---|
| 101 |     - KERNEL32: o additions to parallel port support
 | 
|---|
| 102 | 
 | 
|---|
| 103 |  2001-11-21: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 104 |     - src/makefile:
 | 
|---|
| 105 |                 o Added guidlib to NOTDLLS.
 | 
|---|
| 106 | 
 | 
|---|
| 107 |  2001-11-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 108 |     - COMCTL32: o Tooltips bugfixes (wrong pointer used to free memory)
 | 
|---|
| 109 |     - USER32:   o GetMenu: check that window menu is indeed a menu and not an id
 | 
|---|
| 110 |                   (fixes failed assertion in ZOC)
 | 
|---|
| 111 |                 o Groupbox fix: if text changes; erase top border + old text
 | 
|---|
| 112 | 
 | 
|---|
| 113 |  2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 114 |     - USER32:   o Destroy CD notification window during dll unload
 | 
|---|
| 115 |                 o Focus fix for dialog windows
 | 
|---|
| 116 |                   Experiments in NT4 show that dialogs that are children don't
 | 
|---|
| 117 |                   receive focus. Not sure if this is always true. (couldn't
 | 
|---|
| 118 |                   find any info about this in the SDK docs)
 | 
|---|
| 119 | 
 | 
|---|
| 120 |  2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 121 |     - GUIDLIB:  o Library with all GUIDs used by Odin
 | 
|---|
| 122 |     - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:
 | 
|---|
| 123 |                 o Removed guid source files and link with guidlib.lib
 | 
|---|
| 124 | 
 | 
|---|
| 125 |  2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 126 |     - WS2_32:   o Compile fix
 | 
|---|
| 127 |     - OLEAUT32: o Don't include guid file in custom build library
 | 
|---|
| 128 | 
 | 
|---|
| 129 |  2000-11-18: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 130 |     - USER32:   o WM_SETTEXT (unicode) fix
 | 
|---|
| 131 |                   (latest changes broke Opera among other things)
 | 
|---|
| 132 | 
 | 
|---|
| 133 |  2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 134 |     - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
 | 
|---|
| 135 |     - USER32:   o Disallow nested calls to SetScrollRange. This is most likely
 | 
|---|
| 136 |                   not the right fix, but it works so far without negative side
 | 
|---|
| 137 |                   effects.
 | 
|---|
| 138 |                   (fixes crash in CVP listview with 4+ items)
 | 
|---|
| 139 |     - GDI32:    o Removed line draw speedup. If I have to choose between
 | 
|---|
| 140 |                   a performance loss of a few clock cycles and a code size
 | 
|---|
| 141 |                   increase of 2k, I prefer the 1st option.
 | 
|---|
| 142 |     - WSOCK32:  o ODINWRAP changes break winsock. This code still depended
 | 
|---|
| 143 |                   on FS save/restore. Now added a wrapper header for all
 | 
|---|
| 144 |                   OS/2 socket functions.
 | 
|---|
| 145 | 
 | 
|---|
| 146 |  2001-11-16: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 147 |     - ODINWRAP: o don't generate any frame procedure for RELEASE build
 | 
|---|
| 148 |                   anymore (even no FS: wrapper (meanwhile superfluous))
 | 
|---|
| 149 |                   -> significant performance gain for logged micro functions
 | 
|---|
| 150 |     - KERNEL32: o heap speedup (30%)
 | 
|---|
| 151 |     - GDI32:    o minor line drawing speedup
 | 
|---|
| 152 | 
 | 
|---|
| 153 |  2001-11-14: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 154 |     - KERNEL32: o fixed infinite loop in PE loader for corrupted or
 | 
|---|
| 155 |                   misinterpreted PE images (Opera 6)
 | 
|---|
| 156 |     - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
 | 
|---|
| 157 | 
 | 
|---|
| 158 |  2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 159 |     - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
 | 
|---|
| 160 |                 o Removed unnecessary string copy operation changes (heap -> stack)
 | 
|---|
| 161 |                   Performance improvement is minimal at best and stack
 | 
|---|
| 162 |                   corruption is MUCH harder to locate than heap corruption.
 | 
|---|
| 163 | 
 | 
|---|
| 164 |  2001-11-13: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 165 |     - fastdep:  o IPF support.
 | 
|---|
| 166 | 
 | 
|---|
| 167 |  2001-11-13: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 168 |     - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
 | 
|---|
| 169 |       ...         which operate on stack only (STACK_strdupXXX)
 | 
|---|
| 170 |                   This could slightly reduce heap pressure.
 | 
|---|
| 171 |     - USER32:   o avoid unnecessary strcpy/strlen when get/setting window text
 | 
|---|
| 172 | 
 | 
|---|
| 173 |  2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 174 |     - KERNEL32: o Added missing entry in debug log table for hmparport
 | 
|---|
| 175 |                   (fixes crash in debug build with selective logging)
 | 
|---|
| 176 |     - GDI32:    o CalcBitmapSize bugfix
 | 
|---|
| 177 |                 o SetDIBitsToDevice workaround for bug in Matrox driver.
 | 
|---|
| 178 |                   When blitting 32 bpp data, the GpiDrawBits call will
 | 
|---|
| 179 |                   fail with an insufficient memory error. When that happens,
 | 
|---|
| 180 |                   convert data to 24 bpp and try again.
 | 
|---|
| 181 |                   (TODO: This can happen in more functions!!)
 | 
|---|
| 182 |                 o Fixes for wrong bit masks in several functions (24 & 32 bpp)
 | 
|---|
| 183 |                 o Refuse DeleteObject for DEFAULT_GUI_FONT handle
 | 
|---|
| 184 | 
 | 
|---|
| 185 |  2001-11-12: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 186 |     - ODINWRAP: o improved thread call path tracking
 | 
|---|
| 187 |                   (now collects i. e. HEAP_malloc->HeapAlloc paths)
 | 
|---|
| 188 | 
 | 
|---|
| 189 |  2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 190 |     - USER32:   o Fix for calculating font size for a dialog box
 | 
|---|
| 191 | 
 | 
|---|
| 192 |  2001-11-11: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 193 |     - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
 | 
|---|
| 194 |                   (Build breaker. Seems like someone has an old toolkit...)
 | 
|---|
| 195 | 
 | 
|---|
| 196 |  2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 197 |     - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
 | 
|---|
| 198 | 
 | 
|---|
| 199 |  2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 200 |     - COMCTL32: o Ported latest Wine property sheet control
 | 
|---|
| 201 |                   (fixes some, but not all problems in CVP)
 | 
|---|
| 202 | 
 | 
|---|
| 203 |  2001-11-08: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 204 |     - KERNEL32: o first shot at parport support
 | 
|---|
| 205 | 
 | 
|---|
| 206 |  2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 207 |     - USER32:   o EndDialog fix for MFC dialog windows
 | 
|---|
| 208 |                 o static control fix: SS_CENTERIMAGE means fill remainder
 | 
|---|
| 209 |                   of client area with upper left pixel of bitmap
 | 
|---|
| 210 |     - KERNEL32: o Fix for applications that use CreateFile to open
 | 
|---|
| 211 |                   a named pipe
 | 
|---|
| 212 | 
 | 
|---|
| 213 |  2001-11-07: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 214 |     - WININET:  o http, internet: WINE sync
 | 
|---|
| 215 | 
 | 
|---|
| 216 |  2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 217 |     - KERNEL32: o Call old DosOpen if DosOpenL not available
 | 
|---|
| 218 | 
 | 
|---|
| 219 |  2001-10-31: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 220 |     - CmdQd:    o Dirty workaround for Ctrl-C on client waiting for output
 | 
|---|
| 221 |                   so it won't kill the daemon.
 | 
|---|
| 222 | 
 | 
|---|
| 223 |  2001-10-30: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 224 |     - KERNEL32: o IOCTL_CDROM_READ_TOC bugfix
 | 
|---|
| 225 |                 o Handle opening of drive without disk and getting handle
 | 
|---|
| 226 |                   when disk is inserted
 | 
|---|
| 227 |                 o Use DosOpenL (if available) to open files, or else the
 | 
|---|
| 228 |                   large file apis won't work properly.
 | 
|---|
| 229 | 
 | 
|---|
| 230 |  2001-10-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 231 |     - KERNEL32: o Always IOCTL_DISK/DSK_GETLOCKSTATUS for IOCTL_STORAGE_CHECK_VERIFY
 | 
|---|
| 232 |                   (handle doesn't need to be valid for this ioctl)
 | 
|---|
| 233 |     - USER32:   o Send WM_DEVICECHANGE to top-level windows when a CD is
 | 
|---|
| 234 |                   inserted or removed (poll CD status every 100ms)
 | 
|---|
| 235 | 
 | 
|---|
| 236 |  2001-10-29: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 237 |     - BUILD:    o strip EAs from binary before executing LXLITE on it to
 | 
|---|
| 238 |                   prevent errors in LXLITE if the file is on a LAN Server
 | 
|---|
| 239 |                   JFS volume
 | 
|---|
| 240 | 
 | 
|---|
| 241 |  2001-10-29: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 242 |     - NTDLL:    o _ultow and RtlIntegerToUnicodeString.
 | 
|---|
| 243 |     - Makefiles:
 | 
|---|
| 244 |                 o Remove dummy.c in clean rule.
 | 
|---|
| 245 | 
 | 
|---|
| 246 |  2001-10-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 247 |     - COMCTL32: o LISTVIEW_GetItemWidth bugfix: item can never be bigger
 | 
|---|
| 248 |                   than the client area
 | 
|---|
| 249 |     - USER32:   o Fixes for Set/GetWindowLong for dialogs. (unicode flag not
 | 
|---|
| 250 |                   passed to parent class methods)
 | 
|---|
| 251 |                 o Added SetDialogHook function for custom build
 | 
|---|
| 252 |     - KERNEL32: o Added RegisterCustomDriver
 | 
|---|
| 253 |                 o Added SetDefaultLanguage to override default language
 | 
|---|
| 254 | 
 | 
|---|
| 255 |  2001-10-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 256 |     - KERNEL32: o IOCTL_SCSI_GET_ADDRESS: fail if wnaspi32 not loaded
 | 
|---|
| 257 |     - WINMM:    o Added option to turn off audio by setting a key in the registry
 | 
|---|
| 258 |                   HKEY_LOCAL_MACHINE\\System\\CustomBuild
 | 
|---|
| 259 |                   DisableAudio = [0|1] (DWORD type)
 | 
|---|
| 260 |     - USER32:   o CreateIconIndirect bugfix
 | 
|---|
| 261 | 
 | 
|---|
| 262 |  2001-10-26: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 263 |     - FastDep:  o Corrected crash on bad dependency file.
 | 
|---|
| 264 | 
 | 
|---|
| 265 |  2001-10-26: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 266 |     - WNASPI32: o don't fail DLL loading if ASPI library fails to init
 | 
|---|
| 267 | 
 | 
|---|
| 268 |  2001-10-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 269 |     - KERNEL32: o Better implementation of IOCTL_CDROM(DISK/STORAGE)_CHECK_VERIFY
 | 
|---|
| 270 |                 o CDROM ioctls: Use signature returned by IOCD_IDENTIFY ioctl
 | 
|---|
| 271 |                 o Implemented IOCTL_CDROM_READ_TOC
 | 
|---|
| 272 | 
 | 
|---|
| 273 |  2001-10-26: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 274 |     - USER32:   o fixed ESC keyboard event
 | 
|---|
| 275 |                 o fixed passing thru special key events to the frame window
 | 
|---|
| 276 |                 o partial fix for shift key processing
 | 
|---|
| 277 |                 o fixed right shift processing (and possibly numerous
 | 
|---|
| 278 |                   other extended keys)
 | 
|---|
| 279 |                 o fixed this &%$&%! Alt-Gr-Key-Emulation
 | 
|---|
| 280 |                   remaining issues:
 | 
|---|
| 281 |                     AltGr won't toggle GetAsyncKeyState() or GetKeyState()
 | 
|---|
| 282 | 
 | 
|---|
| 283 |  2001-10-25: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 284 |     - USER32:   o fixed scancodes for [Pause] and [PrtScr]
 | 
|---|
| 285 | 
 | 
|---|
| 286 |  2001-10-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 287 |     - USER32:   o Fixed sending of WM_ACTIVATEAPP messages. Only send them
 | 
|---|
| 288 |                   to top-level windows when application gains or loses focus
 | 
|---|
| 289 |                   from/to a window of another process.
 | 
|---|
| 290 |                 o Fix for window tracking with thin frame (moving/sizing
 | 
|---|
| 291 |                   window left tracks on the screen (fullscreen dragging disabled))
 | 
|---|
| 292 |     - KERNEL32: o Never use DosError to disable hard errors! Use SetErrorMode
 | 
|---|
| 293 |                   *and* restore old error mode afterwards.
 | 
|---|
| 294 |                 o IOCTL_DISK_GET_DRIVE_GEOMETRY change:
 | 
|---|
| 295 |                   Applications can use this IOCTL to check if the floppy has
 | 
|---|
| 296 |                   been changed. OSLibDosGetDiskGeometry won't fail when that
 | 
|---|
| 297 |                   happens so we read one byte from the disk and return
 | 
|---|
| 298 |                   ERROR_MEDIA_CHANGED if it fails with ERROR_WRONG_DISK.
 | 
|---|
| 299 |     - COMCTL32: o ListView: LVM_SETITEMA: update item even when 'new' text is
 | 
|---|
| 300 |                   the same.
 | 
|---|
| 301 |                   (CVP depends on this)
 | 
|---|
| 302 | 
 | 
|---|
| 303 |  2001-10-24: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 304 |     - USER32:   o added translation between PM Scancodes and
 | 
|---|
| 305 |                   Windows Scancodes
 | 
|---|
| 306 |                   Note: Open32 uses always PM Scancodes!
 | 
|---|
| 307 |                 o fixed GetKeyNameText as far as possible
 | 
|---|
| 308 |                   Despite we'll have to implement a flexible keyboard
 | 
|---|
| 309 |                   layout scheme in the future.
 | 
|---|
| 310 | 
 | 
|---|
| 311 |  2001-10-24: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 312 |     - PMKBDHK:  o link statically with C runtime
 | 
|---|
| 313 | 
 | 
|---|
| 314 |  2001-10-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 315 |     - USER32:   o SCROLLBAR: Only set focus to scrollbar control if it has
 | 
|---|
| 316 |                   the WS_TABSTOP style (bugfix taken from Wine)
 | 
|---|
| 317 |                 o IsWindowVisible: check for WS_CHILD style before checking
 | 
|---|
| 318 |                   parents
 | 
|---|
| 319 |                   (CVP: fixes moving of dialog with invisible owner)
 | 
|---|
| 320 |                 o Frame tracking: activate and bring window to top when
 | 
|---|
| 321 |                   control key is not pressed (OS/2 look)
 | 
|---|
| 322 |                   (fixes activation by clicking on title bar and you can now
 | 
|---|
| 323 |                    track frame without activating it)
 | 
|---|
| 324 |                 o Double mouse click sent two up messages
 | 
|---|
| 325 |                 o Double click on system menu now closes window
 | 
|---|
| 326 |                   (SetCapture interferes with double click message generation)
 | 
|---|
| 327 |     - WINMM:    o Dynamically load MDM; Windows applications (that don't
 | 
|---|
| 328 |                   require sound) will no longer fail when MMPM/2 isn't available.
 | 
|---|
| 329 | 
 | 
|---|
| 330 |  2001-10-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 331 |     - COMCTL32: o ListView: WM_KEYDOWN -> if WM_NOTIFY returns TRUE, then
 | 
|---|
| 332 |                   don't process key anymore; the app did it for us
 | 
|---|
| 333 |                 o ListView: First focus change didn't work
 | 
|---|
| 334 |                 o Partial implementation of draglists. Only sends DL_BEGINDRAG
 | 
|---|
| 335 |                   DRAGLISTMSGSTRING message which is enough for CVP.
 | 
|---|
| 336 |     - USER32:   o Fixed moving of window with RMB
 | 
|---|
| 337 | 
 | 
|---|
| 338 |  2001-10-23: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 339 |     - USER32:   o major improvement on keyboard handling
 | 
|---|
| 340 |                   Special AltGr mapping missing yet
 | 
|---|
| 341 |                 o partial fix to GetKeyNameText(),
 | 
|---|
| 342 |                   two Open32 bugs remaining:
 | 
|---|
| 343 |                   (injected scancodes ignored (undoc),
 | 
|---|
| 344 |                    extended key bit ignored)
 | 
|---|
| 345 | 
 | 
|---|
| 346 |  2001-10-22: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 347 |     - TESTAPP:  o added keyboard test program for low-level testing
 | 
|---|
| 348 |                   of the keyboard routines
 | 
|---|
| 349 |                   (Queue, WH_KEYBOARD, WH_KEYBOARD_LL)
 | 
|---|
| 350 |     - PMKBDHK:  o added initial version
 | 
|---|
| 351 |     - USER32:   o enabled PMKBDHK
 | 
|---|
| 352 |                 o fixed minor issue in WH_KEYBOARD_LL
 | 
|---|
| 353 |     - SHELL32:  o minor speedup in PIDL handling
 | 
|---|
| 354 |     - KERNEL32: o removed experimental heap handle cache stats
 | 
|---|
| 355 | 
 | 
|---|
| 356 |  2001-10-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 357 |     - WSOCK32:  o Fix for sending FD_CLOSE notification when connection
 | 
|---|
| 358 |                   is closed at the remote end.
 | 
|---|
| 359 | 
 | 
|---|
| 360 |  2001-10-20: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 361 |     - WNASPI32: o do not fail in init routine in case ASPIROUT.SYS
 | 
|---|
| 362 |                   is not present. Just return errors from all calls
 | 
|---|
| 363 |                   if this is the case.
 | 
|---|
| 364 |                   TODO: refine calls to not return any ASPI devices!
 | 
|---|
| 365 | 
 | 
|---|
| 366 |  2001-10-19: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 367 |     - WSOCK32:  o implemented error bit handling in Winsock 2.0
 | 
|---|
| 368 |                   event semaphore notification for async select
 | 
|---|
| 369 | 
 | 
|---|
| 370 |  2001-10-19: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 371 |     - COMCTL32: o updated listview and status to wine level
 | 
|---|
| 372 |     - COMDLG32: o fix crash in FileDlg95 (used freed memory object)
 | 
|---|
| 373 | 
 | 
|---|
| 374 |  2001-10-18: knut stange osmundsen <kosmunds@csc.com>
 | 
|---|
| 375 |     - odin32.*.vac3*.mk:
 | 
|---|
| 376 |                 o Added /noignorecase to ILIBFLAGS. Object libraries
 | 
|---|
| 377 |                   is now using case sensitive names. This removes some
 | 
|---|
| 378 |                   warnings during custombuild and fixes a duplicate symbol
 | 
|---|
| 379 |                   problem in kKrnlLibR3.
 | 
|---|
| 380 | 
 | 
|---|
| 381 |  2001-10-18: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 382 |     - USER32:   o temporarily backed out a change from earlier today
 | 
|---|
| 383 |                   in the color pointer conversion code that causes
 | 
|---|
| 384 |                   severe regressions. Look for @@@AH in oslibres.cpp
 | 
|---|
| 385 | 
 | 
|---|
| 386 |  2001-10-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 387 |     - DDRAW:    o Check if DirectDraw object is associated with Clipper.
 | 
|---|
| 388 |     - SHELL32:  o Compile fix for release build
 | 
|---|
| 389 |     - USER32:   o Fix for pointer conversion
 | 
|---|
| 390 |                 o Notify visible region callback when WM_SHOW arrives.
 | 
|---|
| 391 |                   For some reason we don't receive a WM_VRNENABLED message
 | 
|---|
| 392 |                   when a window is shown for the first time.
 | 
|---|
| 393 |     - KERNEL32: o Check for NULL handler in RtlRaiseException/RtlUnwind
 | 
|---|
| 394 |     - GDI32:    o Removed wrong warnings about GpiQueryBitmapBits
 | 
|---|
| 395 | 
 | 
|---|
| 396 |  2001-10-17: knut stange osmundsen <kosmunds@csc.com>
 | 
|---|
| 397 |     - common:   o Corrected bug in kFile buffering which caused impdef to
 | 
|---|
| 398 |                   crash in some cases.
 | 
|---|
| 399 | 
 | 
|---|
| 400 |  2001-10-17: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 401 |     - SHELL32:  o WINE resync 20011017
 | 
|---|
| 402 |     - KERNEL32: o minor heap optimization
 | 
|---|
| 403 |     - USER32:   o minor handle mgmt optimizations
 | 
|---|
| 404 |     - CRTDLL32: o RegisterLxDll() in initterm was missing (WINPROJ)
 | 
|---|
| 405 | 
 | 
|---|
| 406 |  2001-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 407 |     - DDRAW:    o Fixes for DDBLT_COLORFILL
 | 
|---|
| 408 |     - WS2_32:   o Added stubs for WSAEnumProtocolsA/W
 | 
|---|
| 409 |     - USER32:   o SetFocus fix; don't always activate window because that
 | 
|---|
| 410 |                   changes the z-order which interferes (among other things)
 | 
|---|
| 411 |                   with GetNextDlgTabItem & GetNextDlgGroupItem
 | 
|---|
| 412 |                 o Removed some GetNextDlgGroupItem changes which are no longer
 | 
|---|
| 413 |                   necessary due to the SetFocus fix
 | 
|---|
| 414 | 
 | 
|---|
| 415 |  2001-10-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 416 |     - KERNEL32, CUSTOMBUILD, USER32:
 | 
|---|
| 417 |                 o Custom build fixes + changes
 | 
|---|
| 418 |                 o GlobalMemoryStatus: limit amount of virtual memory to 2GB - 1
 | 
|---|
| 419 |                   Some applications interpret this value as a signed long.
 | 
|---|
| 420 |     - USER32:   o Fix for pointer conversion
 | 
|---|
| 421 | 
 | 
|---|
| 422 |  2001-10-16: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 423 |     - WSOCK32:  o enabled receive and send timeout socket options
 | 
|---|
| 424 |                   (SO_SNDTIMEO, SO_RCVTIMEO)
 | 
|---|
| 425 | 
 | 
|---|
| 426 |  2001-10-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 427 |     - KERNEL32, USER32, WNASPI32, DDRAW:
 | 
|---|
| 428 |                 o Custom build updates
 | 
|---|
| 429 | 
 | 
|---|
| 430 |  2001-10-14: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 431 |     - USER32:   o Convert color cursor to monochrome if it only uses two colors.
 | 
|---|
| 432 |                   This overcomes a silly limitation in some less advanced
 | 
|---|
| 433 |                   display drivers. (SDD still has no support for color cursors!)
 | 
|---|
| 434 |                   (fixes mouse cursor flickering & screen distortion when
 | 
|---|
| 435 |                    accessing the frame buffer directly)
 | 
|---|
| 436 |                   NOTE: This is a partial solution only. Real color cursors
 | 
|---|
| 437 |                         still use GRADD's rather poor software emulation.
 | 
|---|
| 438 | 
 | 
|---|
| 439 |  2001-10-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 440 |     - WSOCK32:  o Overwrite IP header length in sendto for raw sockets
 | 
|---|
| 441 |                   with IP_HDRINCL option set.
 | 
|---|
| 442 |                   (fixes errors for apps that use big endian format for
 | 
|---|
| 443 |                    the length word)
 | 
|---|
| 444 |                 o WSAEnumNetworkEvents now reports (some) events properly
 | 
|---|
| 445 |                 o Call WSACleanup during dll unload in case application
 | 
|---|
| 446 |                   forgot to do that.
 | 
|---|
| 447 | 
 | 
|---|
| 448 |  2000-10-12: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 449 |     - USER32:   o GetNextDlgGroupItem fix for infinite loop in Opera
 | 
|---|
| 450 | 
 | 
|---|
| 451 |  2001-10-12: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 452 |     - KERNEL32: o use bounce buffers if end of buffer crosses
 | 
|---|
| 453 |                   tiled region barrier, not start of buffer
 | 
|---|
| 454 |                   (yeah, being nit-picking here, OS/2 will actually
 | 
|---|
| 455 |                   never give you a memory object that crosses the boundary...)
 | 
|---|
| 456 | 
 | 
|---|
| 457 |  2001-10-11: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 458 |     - include:  o debugtools.h: memory corruption in debugstr_()
 | 
|---|
| 459 |     - KERNEL32: o (cheap) heap lookup acceleration
 | 
|---|
| 460 |                 o better profiler calibration :)
 | 
|---|
| 461 |                 o bounce buffers for DeviceIoControl() with
 | 
|---|
| 462 |                   high memory buffers
 | 
|---|
| 463 |     - SHELL32:  o ~10% speed improvement on shell folder operations ;-)
 | 
|---|
| 464 | 
 | 
|---|
| 465 |  2001-10-11: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 466 |     - USER32:   o SetScrollRange: return error if min > max or out of range
 | 
|---|
| 467 |                                   (ERROR_INVALID_SCROLLBAR_RANGE)
 | 
|---|
| 468 |                   (behaviour of NT4, SP6)
 | 
|---|
| 469 |                 o Scrollbar control window not disabled properly when using
 | 
|---|
| 470 |                   EnableWindow instead of EnableScrollbar. (handle WM_ENABLE
 | 
|---|
| 471 |                   and call EnableScrollbar)
 | 
|---|
| 472 |                 o Forward WM_SYSCOMMAND to Parent (for scrollbar control window
 | 
|---|
| 473 |                   with size grip style)
 | 
|---|
| 474 |     - WSOCK32:  o Implemented IP_HDRINCL, IP_TTL & IP_TOS for set/getsockopt
 | 
|---|
| 475 |     - WS2_32:   o Translate IPPROTO_IP options in getsockopt before calling
 | 
|---|
| 476 |                   wsock32
 | 
|---|
| 477 | 
 | 
|---|
| 478 |  2001-10-11: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 479 |     - KERNEL32: o added ODIN performance profiler
 | 
|---|
| 480 |                   (perf_0.log for PROFILE builds)
 | 
|---|
| 481 |     - SHELL32:  o ~30% speed improvement on shell folder operations
 | 
|---|
| 482 | 
 | 
|---|
| 483 |  2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 484 |     - USER32:   o Do not blindly add ODIN_FUNCTION macros to functions that
 | 
|---|
| 485 |                   get called very often. (like IsWindow, GetParent & IsWindowVisible)
 | 
|---|
| 486 |                   This tends to make logfiles very big...
 | 
|---|
| 487 |     - WSOCK32:  o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
 | 
|---|
| 488 |                   IP_MULTICAST_TTL to setsockopt
 | 
|---|
| 489 |                 o Add support for WS2_32 IPPROTO_IP options
 | 
|---|
| 490 |     - WS2_32:   o Translate IPPROTO_IP options in setsockopt before calling
 | 
|---|
| 491 |                   wsock32
 | 
|---|
| 492 |     - DDRAW:    o Commented out DiveAcquire/DeaquireFrameBuffer for now
 | 
|---|
| 493 |                   (surflock/unlock)
 | 
|---|
| 494 | 
 | 
|---|
| 495 |  2001-10-10: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 496 |     - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
 | 
|---|
| 497 |                         IOCTL_CDROM_LOAD_MEDIA
 | 
|---|
| 498 |                         IOCTL_CDROM_PAUSE_AUDIO
 | 
|---|
| 499 |                         IOCTL_CDROM_STOP_AUDIO
 | 
|---|
| 500 |                         IOCTL_CDROM_RESUME_AUDIO
 | 
|---|
| 501 |                         IOCTL_CDROM_PLAY_AUDIO_MSF
 | 
|---|
| 502 |                 o added IOCTL_STORAGE_EJECT_MEDIA
 | 
|---|
| 503 |                         IOCTL_STORAGE_LOAD_MEDIA
 | 
|---|
| 504 |                         IOCTL_DISK_EJECT_MEDIA
 | 
|---|
| 505 |                         IOCTL_DISK_CHECK_VERIFY
 | 
|---|
| 506 |     - IPHLPAPI: o added fake version of GetAdaptersInfo()
 | 
|---|
| 507 |     - ODINWRAP: o standard C compiler compatibility
 | 
|---|
| 508 |     - MAKE:     o fixes to the profile make include
 | 
|---|
| 509 |     - SHELL32:  o PIDL: instrumentation for performance tuning
 | 
|---|
| 510 | 
 | 
|---|
| 511 |  2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 512 |     - KERNEL32: o Image header page must be readonly
 | 
|---|
| 513 |                 o Temporarily disabled high memory usage for heap
 | 
|---|
| 514 | 
 | 
|---|
| 515 |  2001-10-08: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 516 |     - USER32:   o enabled WH_KEYBOARD_LL hook, seems to work
 | 
|---|
| 517 |                 o added further messages to wndmsg.cpp
 | 
|---|
| 518 |     - KERNEL32: o added further error codes to error2WinError
 | 
|---|
| 519 | 
 | 
|---|
| 520 |  2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 521 |     - USER32:   o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
 | 
|---|
| 522 |                   if mp2 & AWP_ACTIVATE
 | 
|---|
| 523 |                   (fixes activation of some inactive windows; used to be
 | 
|---|
| 524 |                    activated but not brought to the top)
 | 
|---|
| 525 | 
 | 
|---|
| 526 |  2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 527 |     - DDRAW:    o Don't use Dive for blitting to/from 8 bpp surfaces
 | 
|---|
| 528 |     - USER32:   o Eliminated flickering during frame sizing due to
 | 
|---|
| 529 |                   unnecessary drawing
 | 
|---|
| 530 |                 o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
 | 
|---|
| 531 |                 o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
 | 
|---|
| 532 | 
 | 
|---|
| 533 |  2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 534 |     - QUARTZ/OLEAUT32:
 | 
|---|
| 535 |                 o Wine 20011004 resync
 | 
|---|
| 536 |     - KERNEL32: o Reduce overhead for heap allocation
 | 
|---|
| 537 |                 o Always allocate heap memory from high memory (if available)
 | 
|---|
| 538 |                 o Allocate extra heap memory in 64kb units
 | 
|---|
| 539 |                   MUST use 64kb here or else we are at risk of running out
 | 
|---|
| 540 |                   of virtual memory space. (when allocating 4kb we actually
 | 
|---|
| 541 |                   get 4kb + 60k uncommited)
 | 
|---|
| 542 |                   (fixes out of resources error while loading big movies
 | 
|---|
| 543 |                    in The Playa)
 | 
|---|
| 544 | 
 | 
|---|
| 545 |  2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 546 |     - DDRAW:    o Added stretching support for blitting to the screen
 | 
|---|
| 547 |                   (the Playa can now play movies in fullscreen mode)
 | 
|---|
| 548 | 
 | 
|---|
| 549 |  2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 550 |     - WINMM:    o Allocate handle for new timer and verify handle
 | 
|---|
| 551 |                   is valid before using it.
 | 
|---|
| 552 |                   (prevents crashes when app attempts to delete timer twice
 | 
|---|
| 553 |                    (DivX 4))
 | 
|---|
| 554 |     - DDRAW:    o Fixed memory leaks in SurfBlt4 (rectangles)
 | 
|---|
| 555 |                 o Take clipping into account in SurfBlt4. Windowed DirectDraw
 | 
|---|
| 556 |                   blitting now seems to work well.
 | 
|---|
| 557 |                   (only tried DivX 4; needs more testing)
 | 
|---|
| 558 |     - USER32:   o Rewrote sizing & moving of windows (frame tracking)
 | 
|---|
| 559 |                   (ported Wine version + fixed some bugs)
 | 
|---|
| 560 |                   Some applications (e.g. RealPlayer) resize themselves
 | 
|---|
| 561 |                   when receiving WM_SIZING msgs. Not possible to send those
 | 
|---|
| 562 |                   with PM's frame tracking.
 | 
|---|
| 563 |                   TODO: fix flickering of size border (dynamic drag off)
 | 
|---|
| 564 |                   TODO: WM_SIZING handling not 100% correct yet
 | 
|---|
| 565 |                   TODO: Must display size/move cursor when starting action
 | 
|---|
| 566 |                         from system menu
 | 
|---|
| 567 |                 o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
 | 
|---|
| 568 |     - OLEAUT32: o Wine update
 | 
|---|
| 569 | 
 | 
|---|
| 570 |  2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 571 |     - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
 | 
|---|
| 572 |                   (Some dlls (divx codec) call CoFreeUnusedLibraries which
 | 
|---|
| 573 |                    unloads the same dll if we use CoLoadLibrary (-> crash)
 | 
|---|
| 574 |                    NT's regsvr32 doesn't use CoLoadLibrary either)
 | 
|---|
| 575 |     - USER32:   o OSLibWinGetMsg bugfix
 | 
|---|
| 576 | 
 | 
|---|
| 577 |  2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 578 |     - USER32:   o Lastest Wine revision of GetNextDlgGroupItem ported + modified
 | 
|---|
| 579 | 
 | 
|---|
| 580 |  2001-09-30: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 581 |     - INCLUDE:  o Hook constants added to winconst.h
 | 
|---|
| 582 |                   (adding them to winuser.h only completely breaks Odin)
 | 
|---|
| 583 |     - DDRAW:    o Implemented IDirectDrawClipper class for windowed DirectDraw
 | 
|---|
| 584 |                   (only works if app uses clipping info for manual blitting;
 | 
|---|
| 585 |                    IDirectSurface blitting methods need to be updated to
 | 
|---|
| 586 |                    take clipping into account)
 | 
|---|
| 587 |     - USER32:   o Added export to register visible region change callback
 | 
|---|
| 588 | 
 | 
|---|
| 589 |  2001-09-30: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 590 |     - Makefiles:
 | 
|---|
| 591 |                 o Added a DOMAKES util which should be used when invoking
 | 
|---|
| 592 |                   other makefiles. (see /src/kernel32/makefile)
 | 
|---|
| 593 |                 o Silenced most of the command $(DO*) commands so the commandline
 | 
|---|
| 594 |                   doesn't show.
 | 
|---|
| 595 |                 o Added some colors on the output from the $(DO*) scripts
 | 
|---|
| 596 |                   to make it easier to separate directory and makefile switching
 | 
|---|
| 597 |                   from all the other output.
 | 
|---|
| 598 |                   Turn this off by using the env.var. BUILD_NOCOLOR.
 | 
|---|
| 599 |                 o Did some cleanup of the main Makefile and added some missing rules.
 | 
|---|
| 600 |                 o Made separate .depend file for the include files in the /include dir.
 | 
|---|
| 601 |                   This will speedup the 'dep' rule somewhat.
 | 
|---|
| 602 |                 o Autostart CmdQd with 7 workers if not started and MULTIJOBS are defined.
 | 
|---|
| 603 |                 o Profile builds uses ./bin/Profile.* subdir for output, not ./bin/Debug.*.
 | 
|---|
| 604 |                 o PROFILE mode (PROFILE=1) overrides DEBUG and RELEASE modes.
 | 
|---|
| 605 |                 o NMAKE version of the Watcom support since WMAKE sucks big time :-(
 | 
|---|
| 606 |                   These are the the odin32.*.watn.mk files. This caused introduction
 | 
|---|
| 607 |                   of the MKFILE macro for the compiler specific filename part.
 | 
|---|
| 608 |                   (Set CCENV=WAT and use NMAKE just like with VAC3.)
 | 
|---|
| 609 |                 o Enabled Watcom (NMAKE version) support in mostly all makefiles.
 | 
|---|
| 610 |                   (I.e. places we do compiler specific tweaks.)
 | 
|---|
| 611 |     - Fastdep:  o Corrected processing of C/C++ #include "someheader.h" to
 | 
|---|
| 612 |                   start the search in the source code directory.
 | 
|---|
| 613 |                 o Corrected handling of deleted files.
 | 
|---|
| 614 |                 o Increased some read and write buffers.
 | 
|---|
| 615 |     - Win32k:   o Changed PSZ to char *, since H2INC doesn't understand PSZ.
 | 
|---|
| 616 |     - Custombulid:
 | 
|---|
| 617 |                 o Can now build object libraries for custombuild without separate
 | 
|---|
| 618 |                   makefiles. Define CUSTOMBUILD=1 (=1 is important!) to build an
 | 
|---|
| 619 |                   DLL.
 | 
|---|
| 620 |                 o To build all needed object libraries and the custom dll,
 | 
|---|
| 621 |                   go to /src and 'nmake custombuild'. There is currently no
 | 
|---|
| 622 |                   rule in the main makefile for this, so remember to make the
 | 
|---|
| 623 |                   libraries in /lib first.
 | 
|---|
| 624 |                 o Removed all the obsolete *lib.mak files.
 | 
|---|
| 625 |     - Watcom:   o ccollection.h: Include odin.h to get min/max.
 | 
|---|
| 626 |                 o odin.h:       C INLINE/inline support.
 | 
|---|
| 627 |                 o odinwrap.h:   Watcom has problems with the GetCurrentThreadId
 | 
|---|
| 628 |                                 redeclaration. (DWORD != unsigned long int)
 | 
|---|
| 629 |                                 Exclude prototype if watcomc. (workaround)
 | 
|---|
| 630 |                 o windef.h:     __max and __min is defined in stdlib.h, undef before
 | 
|---|
| 631 |                                 redefining them.
 | 
|---|
| 632 |                 o unicode.h:    static inline workaround (just like VAC).
 | 
|---|
| 633 |                 o src/makefile: Temporarily ignore return codes from subdirs.
 | 
|---|
| 634 |                 o kernel32/console2.h:
 | 
|---|
| 635 |                                 Don't include calling convetion for thread
 | 
|---|
| 636 |                                 function. The default is the correct one usually.
 | 
|---|
| 637 |                 o kernel32/conbuffervio.cpp:
 | 
|---|
| 638 |                                 Alloca is defines in malloc.h for watcom. VAC defines
 | 
|---|
| 639 |                                 this in both malloc and stdlib.h.
 | 
|---|
| 640 |                 o kernel32/console.cpp:
 | 
|---|
| 641 |                                 _beginthread is defined in process.h not stdlib.h as
 | 
|---|
| 642 |                                 for VAC.
 | 
|---|
| 643 | 
 | 
|---|
| 644 |  2001-09-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 645 |     - WGSS50:   o WGSS update
 | 
|---|
| 646 | 
 | 
|---|
| 647 |  2001-09-28: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 648 |     - USER32:   o added experimental support for WH_KEYBOARD_LL hook
 | 
|---|
| 649 |                 o implemented keybd_event, mouse_event (-> SendInput )
 | 
|---|
| 650 | 
 | 
|---|
| 651 |  2001-09-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 652 |     - PE2LX:    o Added options to remove fixups and to reroute all
 | 
|---|
| 653 |                   imports to a custom odin dll
 | 
|---|
| 654 | 
 | 
|---|
| 655 |  2001-09-27: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 656 |     - USER32:   o partial implementation of SendInput()
 | 
|---|
| 657 |     - KERNEL32: o improved error code mapping (error2WinError)
 | 
|---|
| 658 |                 o keep HandleManager from reusing last handle
 | 
|---|
| 659 |                   too quickly (CreateFile after CloseHandle might
 | 
|---|
| 660 |                   return the same handle again, which is correct but doesn't
 | 
|---|
| 661 |                   put the spotlight on buggy apps)
 | 
|---|
| 662 | 
 | 
|---|
| 663 |  2001-09-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 664 |     - WININET/ICMP/WS2_32/WINSPOOL/CTL3D32:
 | 
|---|
| 665 |                 o Makefiles added to build library with obj files
 | 
|---|
| 666 |     - WININET:  o Split up initterm
 | 
|---|
| 667 |     - CUSTOMBUILD:
 | 
|---|
| 668 |                 o Ordinals definitions moved into ordinals.h
 | 
|---|
| 669 | 
 | 
|---|
| 670 |  2001-09-26: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 671 |     - Win32k:   o Create development branch 'splittup' which in the
 | 
|---|
| 672 |                   splittup of win32k is being implemented.
 | 
|---|
| 673 |                 o BTW. I think I've found the jfs/fat32 + win32k problem.
 | 
|---|
| 674 |                   I left some dirty readonly heap pages behind...
 | 
|---|
| 675 |                   That is corrected in the splittup.
 | 
|---|
| 676 |     - Some Makefiles:
 | 
|---|
| 677 |                 o Corrected the file header to state correct dllname.
 | 
|---|
| 678 |                   Ye][ow, which is doing some documentation stuff on the Odin32,
 | 
|---|
| 679 |                   pointed this out this for me.
 | 
|---|
| 680 | 
 | 
|---|
| 681 |  2001-09-26: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 682 |     - ODINWRAP: o fixed FNEPILOGUE position
 | 
|---|
| 683 |       (MISC)    o added support for calldepth tracing
 | 
|---|
| 684 |     - OLE32:    o fixed wrong prototype in regsvr32.cpp
 | 
|---|
| 685 | 
 | 
|---|
| 686 |  2001-09-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 687 |     - COMCTL32: o Wine updates (MRU functions)
 | 
|---|
| 688 |     - SHELL32:  o Wine updates (SHAddToRecentDocs)
 | 
|---|
| 689 |     - DDRAW/ADVAPI32: Added makefiles for building library with obj files
 | 
|---|
| 690 | 
 | 
|---|
| 691 |  2001-09-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 692 |     - DDRAW:    o Set screen resolution + bpp of primary surface to those
 | 
|---|
| 693 |                   of the PM desktop. (used to default to 640x480x8bpp)
 | 
|---|
| 694 | 
 | 
|---|
| 695 |  2001-09-24: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 696 |     - USER32:   o added ODINWRAP debug tracing support to WINKEYBOARD.CPP
 | 
|---|
| 697 | 
 | 
|---|
| 698 |  2001-09-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 699 |     - USER32:   o MDI bugfix: set active child to 0 when last one is destroyed
 | 
|---|
| 700 |                   (fixes crash when closing mdi window in odinapp)
 | 
|---|
| 701 |     - GDI32:    o DIB Section sync bugfix; GpiQueryBitmapBits fails
 | 
|---|
| 702 |                   when cbImage is too small (compressed images only)
 | 
|---|
| 703 |                   This used to work. Maybe related to new SDD version.
 | 
|---|
| 704 |                   (CoolEdit 2000 hits breakpoint in debug build)
 | 
|---|
| 705 | 
 | 
|---|
| 706 |  2001-09-23: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 707 |     - SHELL32:  o Small update for shfileop.c
 | 
|---|
| 708 | 
 | 
|---|
| 709 |  2001-09-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 710 |     - USER32:   o Focus changes
 | 
|---|
| 711 |     - CTL3D32:  o Added stub dll
 | 
|---|
| 712 | 
 | 
|---|
| 713 |  2001-09-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 714 |     - USER32:   o Activate window when it returns 0 for WM_MOUSEACTIVATE
 | 
|---|
| 715 |                   0 is not documented, but experiments in NT4 show that
 | 
|---|
| 716 |                   the window will get activated when it returns this.
 | 
|---|
| 717 |                   (fixes activation of FreeCell when clicking on the window)
 | 
|---|
| 718 |                 o WM_NEXTMENU bugfix (from Wine)
 | 
|---|
| 719 |                   (fixes crash during menu navigation in MDI windows)
 | 
|---|
| 720 |     - SHELL32:  o Shell Folder bugfix from Wine added
 | 
|---|
| 721 | 
 | 
|---|
| 722 |  2000-09-19: Oliver Braun <Oliver.Braun@hamburg.de>
 | 
|---|
| 723 |     - USER32:   o PeekMessageW bugfix
 | 
|---|
| 724 | 
 | 
|---|
| 725 |  2001-09-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 726 |     - USER32:   o Changed GetLastActivePopup (still not complete)
 | 
|---|
| 727 |                 o Prevent loop in DIALOG_IsAccelerator
 | 
|---|
| 728 |                 o GetMenuItemInfoW bugfixes
 | 
|---|
| 729 |                 o Ported the Wine MDI control
 | 
|---|
| 730 | 
 | 
|---|
| 731 |  2001-09-17: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 732 |     - WS2_32:   o added stub for WSAIoctl() (Parsec)
 | 
|---|
| 733 |     - WINMM:    o lowered minimum OS/2 timer resolution to 2ms
 | 
|---|
| 734 |                   (for the new CLOCKSCALE feature)
 | 
|---|
| 735 | 
 | 
|---|
| 736 |  2001-09-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 737 |     - USER32:   o Must return AWP_ACTIVATE/AWP_DEACTIVATE flags in
 | 
|---|
| 738 |                   WM_ADJUSTWINDOWPOS (SWP_ACTIVATE/SWP_DEACTIVATE).
 | 
|---|
| 739 |                   This ensures activation is handled properly.
 | 
|---|
| 740 |                   No longer necessary to manually send WM_ACTIVATE messages.
 | 
|---|
| 741 |                 o Only forward SC_CLOSE syscommand to top level window
 | 
|---|
| 742 |                   if generated by keyboard
 | 
|---|
| 743 | 
 | 
|---|
| 744 |  2001-09-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 745 |     - USER32:   o Some focus/activation changes
 | 
|---|
| 746 |                 o Translation fix for WM_SYSCOMMAND; SC_CLOSE now always
 | 
|---|
| 747 |                   directed to top-level window. (OS/2 look only)
 | 
|---|
| 748 |     - ODINBUG:  o Update by Herwig Bauernfeind
 | 
|---|
| 749 |     - OLEAUT32/OLE32/QUARTZ/COMDLG32:
 | 
|---|
| 750 |                 o Wine updates
 | 
|---|
| 751 |     - COMCTL32: o Wine updates for toolbar, pager & rebar controls
 | 
|---|
| 752 |                 o Treeview bugfix when deleting the selected item
 | 
|---|
| 753 |                   (fixes crash in UltraEdit when opening files)
 | 
|---|
| 754 |     - *         o Put back original sources. Extremely annoying to
 | 
|---|
| 755 |                   add tags and change tabs in files.
 | 
|---|
| 756 | 
 | 
|---|
| 757 |  2001-09-11: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 758 |     - kKrnlLib: o FYI: Win32k revamp/split-up. Not yet completed.
 | 
|---|
| 759 | 
 | 
|---|
| 760 |  2001-09-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 761 |     - KERNEL32: o VirtualQuery fix; DosQueryMem doesn't always return region
 | 
|---|
| 762 |                   size in pages, so round up size to next page boundary
 | 
|---|
| 763 |                   (fixes loop during Netscape 4.7 startup)
 | 
|---|
| 764 |     - GDI32:    o DPtoLP fix; signed/unsigned comparison failed
 | 
|---|
| 765 |                   (fixes huge fonts in Netscape 4.7)
 | 
|---|
| 766 |                 o StretchDIBits fix; clear ulCompression for BI_BITFIELDS
 | 
|---|
| 767 |                   or else WGSS blit will fail
 | 
|---|
| 768 |                   (fixes black pictures in Netscape 4.7)
 | 
|---|
| 769 | 
 | 
|---|
| 770 |  2001-09-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 771 |     - TAPI32:   o Some updates
 | 
|---|
| 772 |     - OLEAUT32: o Wine typelib updates
 | 
|---|
| 773 | 
 | 
|---|
| 774 |  2001-09-07: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 775 |     - include:  o removed ./include/wine/server.h (Wine Server)
 | 
|---|
| 776 |                   because of collisiton with server.h in OS/2 toolkit
 | 
|---|
| 777 |     - WNETAP32: o NetServerEnum implemented
 | 
|---|
| 778 |                 o split into numerous smaller source modules
 | 
|---|
| 779 | 
 | 
|---|
| 780 |  2001-09-05: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 781 |     - src\*:    o Added/fixed CVS $Id tag in source files.
 | 
|---|
| 782 |                   Sorry, if this caused long checkout and compilation. :-)
 | 
|---|
| 783 |     - tools\database:
 | 
|---|
| 784 |                 o Fixed a couple of bugs, just in case we get it online some day :-).
 | 
|---|
| 785 |                 o More or less implemented @design notes.
 | 
|---|
| 786 |     - tools\dailybuild:
 | 
|---|
| 787 |                 o Added automatic uploading of current odin32 api database.
 | 
|---|
| 788 |                   (_test_ it at http://odin.netlabs.org/Odin32DBTest/Odin32DB.phtml)
 | 
|---|
| 789 | 
 | 
|---|
| 790 |  2001-09-04: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 791 |     - FastDep:  o Synced FastDep with OS2Tools.
 | 
|---|
| 792 | 
 | 
|---|
| 793 |  2001-09-01: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 794 |     - Tools\CmdQd:
 | 
|---|
| 795 |                 o Do DosExecPgm directly on programs when possible.
 | 
|---|
| 796 |                   (It's not possible if multiple commands is specified in a job.)
 | 
|---|
| 797 |                 o Path search result caching.
 | 
|---|
| 798 |                 o Uses CMD.EXE nomatter what is in the COMSPEC.
 | 
|---|
| 799 |                 o Corrected memory overwrite in output read loop.
 | 
|---|
| 800 | 
 | 
|---|
| 801 |  2001-08-31: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 802 |     - KERNEL32: o Fix in MoveFileExW, MoveFileExA prevents stack corruption
 | 
|---|
| 803 |                   in MS ACMSETUP
 | 
|---|
| 804 |     - USER32:   o Fix in UnregisterClass for never reaching the destructor
 | 
|---|
| 805 |                   of Win32class. ACMSETUP now working.
 | 
|---|
| 806 |                 o graceful error handling if PostMessage fails due to
 | 
|---|
| 807 |                   shared heap shortage
 | 
|---|
| 808 | 
 | 
|---|
| 809 |  2001-08-30: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 810 |     - SHLWAPI:  o Improvements on ordinal functions
 | 
|---|
| 811 | 
 | 
|---|
| 812 |  2001-08-29: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 813 |     - USER32:   o BUTTON.CPP: don't draw invisible buttons
 | 
|---|
| 814 |                   (fixes MS ACMSETUP w/ OWNERDRAW pushbuttons)
 | 
|---|
| 815 | 
 | 
|---|
| 816 |  2001-08-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 817 |     - GDI32:    o CreateDIBitmap: reverse bitmap for negative height
 | 
|---|
| 818 |                   (fixes buttons in Abiword)
 | 
|---|
| 819 | 
 | 
|---|
| 820 |  2001-08-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 821 |     - USER32:   o FillRect fix: brush 0 means current selected brush
 | 
|---|
| 822 |                   (verified in NT4)
 | 
|---|
| 823 |                   (fixes background in registration dialog of CVP)
 | 
|---|
| 824 | 
 | 
|---|
| 825 |  2001-08-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 826 |     - USER32:   o Convert icon & cursor to OS/2 format in CreateIconIndirect,
 | 
|---|
| 827 |                   CreateCursor & CreateIcon
 | 
|---|
| 828 |                 o Convert RGB 555 to 565 for 16 bits icons and cursors
 | 
|---|
| 829 |                   (win to os/2 icon/cursor conversion)
 | 
|---|
| 830 |     - SHELL32:  o SHBrowseForFolderA fix: don't send dummy BFFM_SELCHANGED
 | 
|---|
| 831 |                   during WM_INITDIALOG
 | 
|---|
| 832 |                   (breaks folder dialog in CVP)
 | 
|---|
| 833 | 
 | 
|---|
| 834 |  2001-08-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 835 |     - KERNEL32: o Set last error to ERROR_ALREADY_EXISTS when CreateMutex,
 | 
|---|
| 836 |                   CreateEvent or CreateSemaphore is called with existing
 | 
|---|
| 837 |                   semaphore name.
 | 
|---|
| 838 |     - CUSTOMBUILD:
 | 
|---|
| 839 |                 o Added riched32
 | 
|---|
| 840 |     - RICHED32: o Changes for custom build
 | 
|---|
| 841 | 
 | 
|---|
| 842 |  2000-08-25: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 843 |     - USER32:   o Button: don't send BN_PAINT/HILITE/UNHILITE/DISABLE
 | 
|---|
| 844 |                   (not done in Wine either)
 | 
|---|
| 845 | 
 | 
|---|
| 846 |  2001-08-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 847 |     - OLEAUT32: o Wine updates
 | 
|---|
| 848 |     - QUARTZ:   o Wine updates
 | 
|---|
| 849 | 
 | 
|---|
| 850 |  2001-08-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 851 |     - QUARTZ:   o Added stub dll from Wine
 | 
|---|
| 852 | 
 | 
|---|
| 853 |  2001-08-19: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 854 |     - Win32k.lib:
 | 
|---|
| 855 |                 o OPEN_FLAGS_NOINHERIT when opening win32k. This is hopefully
 | 
|---|
| 856 |                   a temporary fix on the missing env. mem. lock cleaning for
 | 
|---|
| 857 |                   parent/child.
 | 
|---|
| 858 | 
 | 
|---|
| 859 |  2001-08-16: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 860 |     - GDI32:    o Optimization for dibsect::findSection()
 | 
|---|
| 861 |                   (helps DeleteObject)
 | 
|---|
| 862 | 
 | 
|---|
| 863 |  2001-08-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 864 |     - INSTALL:  o Add date when odininst was last run to odin.ini
 | 
|---|
| 865 |                   [ODINSYSTEM]
 | 
|---|
| 866 |                   INSTALLDATE=Thu Aug 16 23:28:01 2001
 | 
|---|
| 867 | 
 | 
|---|
| 868 |  2001-08-16: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 869 |     - Tools\CmdQd:
 | 
|---|
| 870 |                 o Added command queue daemon which is used in the multiple job
 | 
|---|
| 871 |                   build feature.
 | 
|---|
| 872 |     - Makefiles:
 | 
|---|
| 873 |                 o Implemented multiple job build feature. This works like
 | 
|---|
| 874 |                   GNU Make --jobs[=N].
 | 
|---|
| 875 |                   <ul>
 | 
|---|
| 876 |                   <li> Start the daemon tools\bin\cmdqd init <N> where N is the
 | 
|---|
| 877 |                        then number of workers. Need tools have to be made first.
 | 
|---|
| 878 |                   <li> Define the env.var. MULTIJOBS to enable this feature.
 | 
|---|
| 879 |                   <li> Do make as usual.
 | 
|---|
| 880 |                   <li> tools\bin\cmdqd kill to kill the daemon.
 | 
|---|
| 881 |                   </ul>
 | 
|---|
| 882 |                 o This feature will speedup make of single modules alot on SMP
 | 
|---|
| 883 |                   machines.
 | 
|---|
| 884 | 
 | 
|---|
| 885 |  2000-08-14: Carsten Tenbrink <Carsten@C-Tenbrink.DE>
 | 
|---|
| 886 |     - CAPI2032: o Fix for applications that register with CAPI twice
 | 
|---|
| 887 | 
 | 
|---|
| 888 |  2001-08-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 889 |     - INSTALL:  o Add COM registry keys for OLE32 & OLEAUT32
 | 
|---|
| 890 |                 o Add OdinBug report generator made by Herwig Bauernfeind
 | 
|---|
| 891 |     - USER32:   o Work dir change for object creation
 | 
|---|
| 892 | 
 | 
|---|
| 893 |  2001-08-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 894 |     - USER32:   o Rewrote PostThreadMessage
 | 
|---|
| 895 |                   (fixes RealPlayer 8 install)
 | 
|---|
| 896 |                 o Use WinQueueFromID to query message queue handle of first thread
 | 
|---|
| 897 |                 o Convert 32x32 icon to 40x40 by centering it instead of scaling
 | 
|---|
| 898 |     - KERNEL32: o Use WinQueueFromID to query message queue handle of new thread
 | 
|---|
| 899 |     - SHELL32:  o Fill in complete resource dir for icon conversion
 | 
|---|
| 900 |     - OLEAUT32: o Updated olepicture + typelib with latest Wine code
 | 
|---|
| 901 | 
 | 
|---|
| 902 |  2001-08-08: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 903 |     - Win32k:   o Ignore ERROR_DRIVE_LOCKED (chkdsk/format) error in
 | 
|---|
| 904 |                   Pe2Lx::openPath2.
 | 
|---|
| 905 | 
 | 
|---|
| 906 |  2001-08-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 907 |     - SHELL32:  o Fix for shell link with single icon instead of icon group
 | 
|---|
| 908 |                 o Shell icon save fix (again fopen without binary mode)
 | 
|---|
| 909 |     - USER32:   o Icon conversion moved here + fixed
 | 
|---|
| 910 |     - KERNEL32: o Removed icon conversion
 | 
|---|
| 911 |     - INSTALL:  o Add program object for Registry Editor to Odin folder
 | 
|---|
| 912 | 
 | 
|---|
| 913 |  2001-08-07: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 914 |     - INSTALL:  o Create Odin folder with program objects for readme, changelog
 | 
|---|
| 915 |                   and license files.
 | 
|---|
| 916 |     - USER32:   o Added function to create program objects + folders
 | 
|---|
| 917 |     - SHELL32:  o Create program objects during installation of windows
 | 
|---|
| 918 |                   applications
 | 
|---|
| 919 |                   (Desktop objects created on the OS/2 desktop; program objects
 | 
|---|
| 920 |                    created in app folder inside Odin folder)
 | 
|---|
| 921 |     - KERNEL32: o Put back source files to convert icons and icon groups
 | 
|---|
| 922 |                   (not working right yet)
 | 
|---|
| 923 | 
 | 
|---|
| 924 |  2001-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 925 |     - KERNEL32: o Check for ERROR_ACCESS_DENIED in CreateProcess
 | 
|---|
| 926 |                   (fixes Notes + installers)
 | 
|---|
| 927 |                 o Memory map fixes (GetCurrentProcess returns handles
 | 
|---|
| 928 |                   that are not unique)
 | 
|---|
| 929 |                 o Init fix for logfile names of multiple processes
 | 
|---|
| 930 |                 o Support different ordinal base for custom build
 | 
|---|
| 931 |     - CUSTOMBUILD:
 | 
|---|
| 932 |                 o Add SHLWAPI exports + changes for ordinal exports
 | 
|---|
| 933 | 
 | 
|---|
| 934 |  2001-08-06: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 935 |     - COMCTL32: o Datetime fixes
 | 
|---|
| 936 | 
 | 
|---|
| 937 |  2001-08-04: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 938 |     - Makefiles:
 | 
|---|
| 939 |                 o Depend on libraries. (Thanks goes to Yuri for this!)
 | 
|---|
| 940 | 
 | 
|---|
| 941 |  2001-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 942 |     - CUSTOMBUILD:
 | 
|---|
| 943 |                 o Add registration of gdi32 & advapi32
 | 
|---|
| 944 |                 o Use toupperW in kernel32 instead of toupper (C runtime lib)
 | 
|---|
| 945 |                 o Removed NTDLL dependency
 | 
|---|
| 946 |     - CRTDLL:   o Use toupperW in kernel32 instead of toupper (C runtime lib)
 | 
|---|
| 947 |     - TESTDRV:  o Added sample of device specific driver dll
 | 
|---|
| 948 | 
 | 
|---|
| 949 |  2001-08-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 950 |     - KERNEL32: o Temporarily disabled new name lookup (resources) until
 | 
|---|
| 951 |                   the real problem is located (wrc).
 | 
|---|
| 952 |                   (fixes preference page in Opera)
 | 
|---|
| 953 | 
 | 
|---|
| 954 |  2001-08-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 955 |     - GDI32:    o Set codepage of HDC returned by CreateDCA
 | 
|---|
| 956 |     - COMDLG32: o Set codepage of HDC returned by PrintDlgA
 | 
|---|
| 957 |                   (fixes codepage problems while printing in Opera)
 | 
|---|
| 958 | 
 | 
|---|
| 959 |  2001-07-31: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 960 |     - win32k:   o Merged in a patch from Rafal which as a final attempt to find
 | 
|---|
| 961 |                   a symbol file will look thru the pmdfvers.lst file.
 | 
|---|
| 962 | 
 | 
|---|
| 963 |  2001-07-31: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 964 |     - USER32:   o PostThreadMessage & DDE callback change for new wgss
 | 
|---|
| 965 | 
 | 
|---|
| 966 |  2001-07-29: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 967 |     - Custombuild, Makefiles:
 | 
|---|
| 968 |                 o Made the custombuild simpler by reusing the common makefiles.
 | 
|---|
| 969 |                   Any initterm.obj is replaced by an empty dummy object and the
 | 
|---|
| 970 |                   make is invoked with CUSTOMBUILD=1. makefile in /src have the
 | 
|---|
| 971 |                   common targets all prefixed with custombuild_.
 | 
|---|
| 972 |                 o Merged odin32.post.emx.mk into odin32.post.vac3.mk.
 | 
|---|
| 973 | 
 | 
|---|
| 974 |  2001-07-30: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 975 |     - WINMM:    o Rewrote timeGetSystemTime & timeGetTime
 | 
|---|
| 976 |     - KERNEL32: o Fix for names of dlls in custom build
 | 
|---|
| 977 |     - USER32/GDI32/KERNEL32:
 | 
|---|
| 978 |                 o Custom build changes
 | 
|---|
| 979 |     - WGSS50:   o WGSS update
 | 
|---|
| 980 | 
 | 
|---|
| 981 |  2001-07-29: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 982 |     - Makefiles:
 | 
|---|
| 983 |                 o Force fastdep to scan all files if -a is specified to nmake.
 | 
|---|
| 984 |     - Win32k/test:
 | 
|---|
| 985 |                 o Wrote stupid test app to profile child process execution
 | 
|---|
| 986 |                   on different OSes.
 | 
|---|
| 987 |                   Current results are found in source (PrfTstProcess.c).
 | 
|---|
| 988 | 
 | 
|---|
| 989 |  2001-07-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 990 |     - COMCTL32/COMDLG32/GDI32/KERNEL32/MSVFW32/USER32/SHELL32/WSOCK32/WINMM
 | 
|---|
| 991 |       RPCRT4:
 | 
|---|
| 992 |                 o Updates for custom build (different resource table names)
 | 
|---|
| 993 |     - KERNEL32: o Added exports to change the root keys of the registry
 | 
|---|
| 994 |                   and to change the name of dlls to be loaded next
 | 
|---|
| 995 |     - CUSTOMBUILD:
 | 
|---|
| 996 |                 o Updates
 | 
|---|
| 997 | 
 | 
|---|
| 998 |  2001-07-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 999 |     - USER32:   o Set/GetWindowWord changes (must handle GWW_ID, GWW_HINSTANCE
 | 
|---|
| 1000 |                   and GWW_HWNDPARENT
 | 
|---|
| 1001 |                 o Ported ArrangeIconicWindows from Wine (not complete yet)
 | 
|---|
| 1002 |                 o Rewrote Get/SetDoubleClickTime & SwapMouseButton
 | 
|---|
| 1003 |                 o Don't call O32_GetLastActivePopup
 | 
|---|
| 1004 |                   (TODO: rewrite it)
 | 
|---|
| 1005 |     - KERNEL32: o Rewrote FatalAppExitA/W, FatalExit, Beep, IsBadHugeReadPtr,
 | 
|---|
| 1006 |                   IsBadHugeWritePtr
 | 
|---|
| 1007 |                 o Removed O32_HeapCreate/Destroy calls; return rtl heap handle
 | 
|---|
| 1008 |                 o No longer use Open32's GetProcAddress or GetModuleFileName
 | 
|---|
| 1009 |     - USER32/KERNEL32:
 | 
|---|
| 1010 |                 o Moved WaitForInputIdle & AttachThreadInput from user32 to
 | 
|---|
| 1011 |                   kernel32
 | 
|---|
| 1012 |     - TOOLS\INSTALL:
 | 
|---|
| 1013 |                 o Create temp directory in windows dir
 | 
|---|
| 1014 | 
 | 
|---|
| 1015 |  2001-07-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1016 |     - TOOLS\INSTALL:
 | 
|---|
| 1017 |                 o Added some quartz.dll keys
 | 
|---|
| 1018 |     - COMCTL32: o Status window bugfix; check part number boundary
 | 
|---|
| 1019 |                   (fixes crash in AudioGalaxy)
 | 
|---|
| 1020 |     - USER32:   o IsWindowVisible fix; check WS_CHILD flag before calling GetParent
 | 
|---|
| 1021 |                   (fixes invisible characters while typing in edit control
 | 
|---|
| 1022 |                    of AudioGalaxy)
 | 
|---|
| 1023 | 
 | 
|---|
| 1024 |  2001-07-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1025 |     - DINPUT, DPLAYX, ICMP, IMAGEHLP, IMM32, LZ32,
 | 
|---|
| 1026 |       MSVFW32, OLEPRO32, RICHED32, URLMON, VERSION, WININET
 | 
|---|
| 1027 |                 o Added Wine license
 | 
|---|
| 1028 | 
 | 
|---|
| 1029 |     - AVIFIL32, SHELL32, COMCTL32, COMDLG32, MSACM32, NTDLL, OLE32, OLAUT32,
 | 
|---|
| 1030 |       SHDOCVW, SETUPAPI, SHLWAPI, OLECLI32, OLEDLG, OLESVR32, RPCRT4
 | 
|---|
| 1031 |                 o Replaced Wine license with updated version
 | 
|---|
| 1032 |     - COMCTL32: o Resync with Wine (20010720); comboex, comctl32undoc, rebar,
 | 
|---|
| 1033 |                   imagelist, toolbar, pager
 | 
|---|
| 1034 |     - MSVFW32:  o Resync with Wine (20010720); all
 | 
|---|
| 1035 |     - AVIFIL32: o Resync with Wine (20010720); all
 | 
|---|
| 1036 |     - GDI32:    o Fixed brush leak in InternalTextOutA
 | 
|---|
| 1037 |                   (fixes Macromedia Flash 5 error messages)
 | 
|---|
| 1038 | 
 | 
|---|
| 1039 |  2001-07-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1040 |     - KERNEL32: o Moved wsnprintf to user32
 | 
|---|
| 1041 |     - USER32:   o Removed FatalAppExitA/W (already in kernel32)
 | 
|---|
| 1042 |     - SHLWAPI:  o Removed WINE_StringFromCLSID & StringFromGUID2 (not used)
 | 
|---|
| 1043 |                 o Removed several string function that were not used or exported
 | 
|---|
| 1044 |     - NTDLL:    o Replaced 64 bits math assembly functions (disassembled Wine C code
 | 
|---|
| 1045 |                   compiled with VAC 3.6.5)
 | 
|---|
| 1046 |     - ODINCRT:  o Export 64 bits math rtl functions
 | 
|---|
| 1047 |                 o Added 64 bits math rtl functions for VAC 3.0 (assembly;
 | 
|---|
| 1048 |                   borrowed from VAC 3.6.5)
 | 
|---|
| 1049 |                   NOTE: __divi64 might cause problems (in theory) since
 | 
|---|
| 1050 |                         it uses the FPU and doesn't save the FPU state
 | 
|---|
| 1051 |     - OLE32/WINMM/KERNEL32/USER32/GDI32/COMCTL32/COMDLG32/SHLWAPI/SHELL32/
 | 
|---|
| 1052 |       RPCRT4/WSOCK32/VERSION:
 | 
|---|
| 1053 |                 o Rewrote initterm + debug logging to allow us to build
 | 
|---|
| 1054 |                   a single dll containing the code of many Odin dlls
 | 
|---|
| 1055 |     - CUSTOMBUILD:
 | 
|---|
| 1056 |                 o Example of creating a custom dll with the Odin32 environment
 | 
|---|
| 1057 |                   that can be used for a ported win32 app. (not done yet)
 | 
|---|
| 1058 | 
 | 
|---|
| 1059 |  2001-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1060 |     - DOC:      o Added license for WGSS50
 | 
|---|
| 1061 |     - TOOLS\INSTALL:
 | 
|---|
| 1062 |                 o Include new license in WarpIN install script + package
 | 
|---|
| 1063 |     - TOOLS\DAILYBUILD:
 | 
|---|
| 1064 |                 o Add WGSS50.lic to daily zipfiles
 | 
|---|
| 1065 |     - COMDLG32: o Use printer dialog function in WGSS50
 | 
|---|
| 1066 |     - WGSS50:   o Added new WGSS dll that fixes several printing problems
 | 
|---|
| 1067 |     - KERNEL32: o lstrncmpiA/W bugfix; broke resource lookup in Acrobat
 | 
|---|
| 1068 |                   Distiller (did not exactly work the way Wine code expected it)
 | 
|---|
| 1069 | 
 | 
|---|
| 1070 |  2001-07-19: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 1071 |     - LICENSE:  o added WGSS50.LIC which contains the official license
 | 
|---|
| 1072 |                   of the WGSS50.DLL module that is included with all
 | 
|---|
| 1073 |                   Odin builds. This is a license contract between
 | 
|---|
| 1074 |                   InnoTek Systemberatung GmbH (http://www.innotek.de)
 | 
|---|
| 1075 |                   and the individual Odin user. The library is provided
 | 
|---|
| 1076 |                   free of charge. The main requirement is that every user
 | 
|---|
| 1077 |                   need to own a valid OS/2 license (this also includes
 | 
|---|
| 1078 |                   eComStation of course).
 | 
|---|
| 1079 |                   Every distribution of Odin will also contain this
 | 
|---|
| 1080 |                   license file and the WarpIn archives will show the
 | 
|---|
| 1081 |                   license during installation and require acceptance.
 | 
|---|
| 1082 |                   For any questions about the license, please contact
 | 
|---|
| 1083 |                   me via email. Note that the Odin license specifically
 | 
|---|
| 1084 |                   allows redistribution of Odin with custom applications
 | 
|---|
| 1085 |                   and as soon as the WGSS50 license is included, this also
 | 
|---|
| 1086 |                   applies to WGSS50.DLL.
 | 
|---|
| 1087 | 
 | 
|---|
| 1088 |                   The reason we include WGSS50 (a subset of Open32 used
 | 
|---|
| 1089 |                   by IBM for Netscape Communicator 4.61 for OS/2) is that
 | 
|---|
| 1090 |                   it contains numerous improvements over Open32 and it
 | 
|---|
| 1091 |                   allows us more easily to replace Open32/WGSS50 APIs
 | 
|---|
| 1092 |                   by custom functions.
 | 
|---|
| 1093 | 
 | 
|---|
| 1094 |  2001-07-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1095 |     - KERNEL32: o HeapCreate now creates a separate heap (_ucreate) instead
 | 
|---|
| 1096 |                   of sharing the same heap as Odin.
 | 
|---|
| 1097 |                   (lowers the chance of fatal crashes on heap corruption;
 | 
|---|
| 1098 |                    hangs in exitlist)
 | 
|---|
| 1099 |                 o Implemented HeapValidate
 | 
|---|
| 1100 |                 o GlobalReAlloc bugfix; must check if pointer has a handle
 | 
|---|
| 1101 |                   associated with it.
 | 
|---|
| 1102 |                   (RealDraw install calls GlobalReAlloc with pointer returned
 | 
|---|
| 1103 |                    by GlobalLock(handle))
 | 
|---|
| 1104 | 
 | 
|---|
| 1105 |  2001-07-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1106 |     - KERNEL32: o RegEnumKeyExW fix (lpszClass can be NULL)
 | 
|---|
| 1107 |                 o Faster resource lookup functions (Wine)
 | 
|---|
| 1108 |     - USER32:   o Allocate more memory for icon bitmap before calling
 | 
|---|
| 1109 |                   GpiCreateBitmap. This function seems to touch more bytes
 | 
|---|
| 1110 |                   than necessary (??).
 | 
|---|
| 1111 |     - GDI32:    o AddFontResourceA: ignore if called with filename of PE
 | 
|---|
| 1112 |                   executable (return 1; gets rid of error message in Photoshop 6)
 | 
|---|
| 1113 | 
 | 
|---|
| 1114 |  2001-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1115 |     - COMDLG32: o Ported Wine printer dialog code (inactive due to missing
 | 
|---|
| 1116 |                   functions in winspool)
 | 
|---|
| 1117 |     - USER32:   o Translate WM_VSCROLL & WM_HSCROLL
 | 
|---|
| 1118 |                 o Do not use imports not available in Warp 3's PMWINX
 | 
|---|
| 1119 |                   (WaitForInputIdle & GetAsyncKeyState)
 | 
|---|
| 1120 |                 o There is no close button in Warp 3 (OS/2 look & feel)
 | 
|---|
| 1121 |     - KERNEL32: o Do not call WaitForInputIdle in WinExec on Warp 3 systems.
 | 
|---|
| 1122 | 
 | 
|---|
| 1123 |  2001-07-14: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1124 |     - PELDR:    o Fix for parsing cmd line consisting of directory with spaces
 | 
|---|
| 1125 |     - USER32:   o Get menu font from os2.ini (OS/2 look & feel)
 | 
|---|
| 1126 |                 o Full window drag now works for Odin windows
 | 
|---|
| 1127 |     - GDI32:    o Implemented StartDocW
 | 
|---|
| 1128 | 
 | 
|---|
| 1129 |  2001-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1130 |     - COMDLG32: o Fix for windows 3.1 style file dialog
 | 
|---|
| 1131 |     - COMCTL32: o Bad listview pointer checks cause crashes in details
 | 
|---|
| 1132 |                   view of file dialogs
 | 
|---|
| 1133 |                   (TODO: Details view is still not right)
 | 
|---|
| 1134 |     - KERNEL32: o Check for NULL pointer in lstrlenA/W
 | 
|---|
| 1135 |                   (fixes crash during AutoCAD 14 install)
 | 
|---|
| 1136 |     - USER32:   o Removed very old check for negative x or y coordinates during
 | 
|---|
| 1137 |                   window creation.
 | 
|---|
| 1138 |                   (file open dialog in InstallShield doesn't show weird edit control
 | 
|---|
| 1139 |                    anymore and the MS Word 97 main window looks better now)
 | 
|---|
| 1140 |                 o RegisterClassA/W: check icon first before copying it
 | 
|---|
| 1141 |                   (gets rid of some annoying warnings in the logfile)
 | 
|---|
| 1142 |     - GDI32:    o Change BITMAPINFO height if negative
 | 
|---|
| 1143 |                   (fixes failing StretchDIBits calls with Matrox display driver)
 | 
|---|
| 1144 | 
 | 
|---|
| 1145 |  2001-07-12: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1146 |     - KERNEL32: o Atom fixes
 | 
|---|
| 1147 |     - OLEAUT32: o Added RegisterActiveObject, RevokeActiveObject &
 | 
|---|
| 1148 |                   GetActiveObject from Wine.
 | 
|---|
| 1149 | 
 | 
|---|
| 1150 |  2001-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1151 |     - COMDLG32: o Don't clear filename when selecting of switching
 | 
|---|
| 1152 |                   directory is file open/save dialog.
 | 
|---|
| 1153 | 
 | 
|---|
| 1154 |  2001-07-10: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 1155 |     - WIN32K:   o Made DosKillProcessEx framework.
 | 
|---|
| 1156 |                 o Tried to fix missing unlocks of environment block.
 | 
|---|
| 1157 |     - KERNEL32: o Tried to fix missing unlocks of environment block.
 | 
|---|
| 1158 |                 o Fixed module not found problem when a Pe2Lx is dynamically
 | 
|---|
| 1159 |                   loaded several times.
 | 
|---|
| 1160 |                 o Defined env.var. ODIN32.FAIL_IF_UNREGISTEREDLX to make
 | 
|---|
| 1161 |                   LoadLibraryEx fail on unregistered LX dlls. This will fix
 | 
|---|
| 1162 |                   the most annoying int 3's when starting Opera on debug Odin.
 | 
|---|
| 1163 |                   (Two int 3 per netscape/2 plugin checked.)
 | 
|---|
| 1164 | 
 | 
|---|
| 1165 |  2001-07-09: knut st. osmundsen <kosmunds@csc.com>:
 | 
|---|
| 1166 |     - CRTDLL:   o When renaming dlls we still use the original importlibrary
 | 
|---|
| 1167 |                   and .def-file names. ORGTARGET exist for that purpose.
 | 
|---|
| 1168 |     - NTDLL:    o Link with crtdll.lib.
 | 
|---|
| 1169 |     - VERSION:  o Link with crtdll.lib.
 | 
|---|
| 1170 |     - WIN32K:   o Updated LieList with CrtDll -> CrtDll32 renaming.
 | 
|---|
| 1171 | 
 | 
|---|
| 1172 |  2001-07-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1173 |     - KERNEL32: o Directly import registry functions from REGISTRY.DLL
 | 
|---|
| 1174 |     - GDI32:    o Never use object handle 0
 | 
|---|
| 1175 |                   (fixes bad icons in dialogs)
 | 
|---|
| 1176 |     - USER32:   o Same edit fix as applied yesterday, but this time for
 | 
|---|
| 1177 |                   single line edit control painting.
 | 
|---|
| 1178 |                   (Opera url editbox now displays selected text properly)
 | 
|---|
| 1179 | 
 | 
|---|
| 1180 |  2001-07-08: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 1181 |     - WSOCK32:  o error message to human readable text translation
 | 
|---|
| 1182 |                   for WSASetLastError (debug version)
 | 
|---|
| 1183 |                 o implemented IPPROTO_IP support for setsockopt
 | 
|---|
| 1184 |                   (not fully done)
 | 
|---|
| 1185 |                 o reset semaphore in WSAEnumNetworkEvents
 | 
|---|
| 1186 |     - USER32:   o deleted user32\old. It is still in the CVS attic
 | 
|---|
| 1187 |                   so in case you need it, you can get it from CVS
 | 
|---|
| 1188 | 
 | 
|---|
| 1189 |  2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1190 |     - USER32:   o Some icon fixes
 | 
|---|
| 1191 |                 o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
 | 
|---|
| 1192 |                   jump back to last click position when moving the mouse
 | 
|---|
| 1193 |                   outside the scroll window during scrolling.
 | 
|---|
| 1194 |                 o Changed menu behaviour in OS/2 mode; no mouse tracking
 | 
|---|
| 1195 |                   when right or left mouse button not pressed.
 | 
|---|
| 1196 |                 o Clipboard (Get/SetClipboardData: must translated open32
 | 
|---|
| 1197 |                   to kernel32 global memory handles (due to Global memory
 | 
|---|
| 1198 |                   api rewrite)
 | 
|---|
| 1199 |                 o Key translation for arrow keys and insert/del, home/end, page up/down
 | 
|---|
| 1200 |                   added (WM_CHAR message translation)
 | 
|---|
| 1201 |                 o Edit control bugfix for drawing selected text
 | 
|---|
| 1202 |     - KERNEL32: o More pointer checks added to GlobalLock/Unlock
 | 
|---|
| 1203 |                 o Add default rename entry for crtdll
 | 
|---|
| 1204 |                 o Fixed FS corruption in atom functions (wrapper for LookupAtom)
 | 
|---|
| 1205 |     - CRTDLL:   o Renamed to crtdll32 to avoid problems with some Lotus
 | 
|---|
| 1206 |                   apps that come with their own crtdll
 | 
|---|
| 1207 |     - NTDLL:    o Link with crtdll32.lib
 | 
|---|
| 1208 |     - VERSION:  o Link with crtdll32.lib
 | 
|---|
| 1209 |     - SHLWAPI:  o Link with crtdll32.lib
 | 
|---|
| 1210 |     - PELDR:    o Fix for file not found error
 | 
|---|
| 1211 | 
 | 
|---|
| 1212 |  2001-07-08: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 1213 |     - KERNEL32: o Added call in initterm to tell win32k where the Odin32
 | 
|---|
| 1214 |                   environment block is. (Its in Open32, and I don't think
 | 
|---|
| 1215 |                   it is reallocated.)
 | 
|---|
| 1216 |                 o Added early initiation of Win32k loaded EXE. This corrected
 | 
|---|
| 1217 |                   problems with GetModuleHandleA returing -1 to MSVCRT.
 | 
|---|
| 1218 |     - WIN32K:   o Fixed environment block problem. The environment variables is
 | 
|---|
| 1219 |                   not updated in the original env.block. So, win32k needs to
 | 
|---|
| 1220 |                   be told where to find the Odin32 environment block to correctly
 | 
|---|
| 1221 |                   find dlls using the PATH.
 | 
|---|
| 1222 |                 o Corrected crosspage fixup bug.
 | 
|---|
| 1223 |                 o Set no internal fixups flag in LX header for most executables
 | 
|---|
| 1224 |                   in an attempt to convice OS/2 to load them where they wanna be
 | 
|---|
| 1225 |                   loaded (usually 0x00400000).
 | 
|---|
| 1226 |                 o Can now tell difference between the debug kernels.
 | 
|---|
| 1227 | 
 | 
|---|
| 1228 |  2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1229 |     - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
 | 
|---|
| 1230 |                 o Fixed GetAtomNameW
 | 
|---|
| 1231 |     - GDI32:    o Don't use Open32 IsBad* memory functions directly
 | 
|---|
| 1232 |     - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
 | 
|---|
| 1233 |                   memory handles (due to Global memory api rewrite)
 | 
|---|
| 1234 | 
 | 
|---|
| 1235 |  2001-07-07: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 1236 |     - WS2_32:   o import WSAEventSelect from WSOCK32 (although a
 | 
|---|
| 1237 |                   Winsock 2.0 API, it makes more sense to be implemented
 | 
|---|
| 1238 |                   in the Winsock 1.1 stack)
 | 
|---|
| 1239 |                 o import WSAEnumNetworkEvents from WSOCK32 (same reason)
 | 
|---|
| 1240 |     - WSOCK32:  o enhanced WSAAsyncSelect processing to allow both
 | 
|---|
| 1241 |                   window handle and event semaphore notification
 | 
|---|
| 1242 |                 o implemented WSAEventSelect
 | 
|---|
| 1243 |                 o implemented WSAEnumNetworkEvents (not correct)
 | 
|---|
| 1244 | 
 | 
|---|
| 1245 |  2001-07-07: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 1246 |     - URLMON:   o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
 | 
|---|
| 1247 |                   to fix SYS2048 during RealPlayer install.
 | 
|---|
| 1248 |     - WIN32K:   o Fixed the DBExpert bug in the longdllname code.
 | 
|---|
| 1249 |                   BTW. Thanks to Randell at Sundial Systems and Alex Newman
 | 
|---|
| 1250 |                   for reporting this and begin very helpful tracking it down.
 | 
|---|
| 1251 |                 o The longdllname feature now differs from the OS/2 loader on
 | 
|---|
| 1252 |                   one points: <br>
 | 
|---|
| 1253 |                   It is able to find (DosQueryModuleHandle) for dlls using
 | 
|---|
| 1254 |                   internal names which includes the .DLL extention. <br>
 | 
|---|
| 1255 |                   The longdllname feature don't currently support names with
 | 
|---|
| 1256 |                   extention .DLL like extentions with base name lengths from
 | 
|---|
| 1257 |                   4-7 chars. I will fix this some day.<br>
 | 
|---|
| 1258 | 
 | 
|---|
| 1259 |  2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1260 |     - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
 | 
|---|
| 1261 |                 o GlobalAlloc must return pointers aligned at 8 byte boundary
 | 
|---|
| 1262 |                   (SDK docs + verified in NT4, SP6)
 | 
|---|
| 1263 |                 o Better checks in GlobalFree for invalid handles/pointers
 | 
|---|
| 1264 |                   (InvestmentView seems to call it with a GDI handle; why??)
 | 
|---|
| 1265 |                 o LocalReAlloc bugfix
 | 
|---|
| 1266 |     - USER32:   o Must return 16 bits icon & cursor handles
 | 
|---|
| 1267 |                   (fixes crash in Acrobat Reader 4)
 | 
|---|
| 1268 |     - GDI32:    o GetDIBits must only return color information when lpvBits
 | 
|---|
| 1269 |                   is not NULL.
 | 
|---|
| 1270 |                   (fixes Opera crash (heap corruption) with new heap code)
 | 
|---|
| 1271 |     - PELDR:    o Report error when file not found.
 | 
|---|
| 1272 | 
 | 
|---|
| 1273 |  2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1274 |     - USER32:   o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
 | 
|---|
| 1275 |                 o WinHelpA fixes (use shared memory for sending information
 | 
|---|
| 1276 |                   to winhlp32)
 | 
|---|
| 1277 |     - KERNEL32: o Added GlobalFix and GlobalUnfix
 | 
|---|
| 1278 |                 o Local memory functions now use Global memory functions
 | 
|---|
| 1279 |                 o Ported Wine Global memory functions (we no longer depend
 | 
|---|
| 1280 |                   on Open32 for these)
 | 
|---|
| 1281 | 
 | 
|---|
| 1282 |  2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1283 |     - USER32:   o Partial implementation of ToAsciiEx (just calls ToAscii)
 | 
|---|
| 1284 |                 o VkKeyScanExA/W: call VkKeyScanA/W
 | 
|---|
| 1285 |                 o MapVirtualKeyExA/W: call MapVirtualKeyA/W
 | 
|---|
| 1286 |                 o SetParent bugfix; even though the win32 coordinates might
 | 
|---|
| 1287 |                   not change, the PM coordinates can. We must make sure the
 | 
|---|
| 1288 |                   child stays at the same position (y) relative to the
 | 
|---|
| 1289 |                   (new) parent.
 | 
|---|
| 1290 |                   (Cool Edit Pro LE play buttons now at the right position)
 | 
|---|
| 1291 |                 o Send WM_SETICON to frame window with converted win32 icon
 | 
|---|
| 1292 |                   (application icon now visible in task list)
 | 
|---|
| 1293 |                 o Quick fix for window creation:
 | 
|---|
| 1294 |                   Before a window has processed WM_NCCREATE:
 | 
|---|
| 1295 |                   - GetTopWindow can't return that window handle
 | 
|---|
| 1296 |                   - GetWindow(parent, GW_CHILD) can't return that window handle
 | 
|---|
| 1297 |                   - IsChild works
 | 
|---|
| 1298 |                   TODO: Does this affect more functions?? (other GetWindow ops)
 | 
|---|
| 1299 |                   (verified in NT4, SP6)
 | 
|---|
| 1300 |                   TODO: Must add window to parent's child list after WM_NCCREATE
 | 
|---|
| 1301 |                         and rewrite GetWindow & GetTopWindow
 | 
|---|
| 1302 |                   (fix for crash in MP3 Explorer)
 | 
|---|
| 1303 | 
 | 
|---|
| 1304 |     - GDI32:    o Workaround for applications that depend on 16 bits
 | 
|---|
| 1305 |                   GDI object handles.
 | 
|---|
| 1306 |                   (TODO: must create our own 16 bits handles)
 | 
|---|
| 1307 |                   (fixes crash in Cool Edit Pro LE)
 | 
|---|
| 1308 | 
 | 
|---|
| 1309 |  2001-07-03: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 1310 |     - KERNEL32: o Improoved the Unhandled exception message by
 | 
|---|
| 1311 |                   trying to provide modulename and some kind of obj/offset.
 | 
|---|
| 1312 |     - FastDep:  o (synced with OS2Tools) Make better use of data in evt.
 | 
|---|
| 1313 |                    existing .depend file so that only changed files are processed.
 | 
|---|
| 1314 | 
 | 
|---|
| 1315 |  2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1316 |     - KERNEL32: o Executable load fix
 | 
|---|
| 1317 |                   (fixes crash during RealPlayer 8 install)
 | 
|---|
| 1318 |                 o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
 | 
|---|
| 1319 |     - USER32:   o ToAscii & GetKeyboardState fixes
 | 
|---|
| 1320 |                   (for Putty keyboard input)
 | 
|---|
| 1321 | 
 | 
|---|
| 1322 |  2001-06-27: knut st. osmundsen <kosmunds@csc.com>
 | 
|---|
| 1323 |     - fastdep:  o Fixed a coupla bugs; RC files parsing and .
 | 
|---|
| 1324 |                 o Support for filenames with spaces.
 | 
|---|
| 1325 | 
 | 
|---|
| 1326 |  2001-06-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1327 |     - KERNEL32: o CreateProcess fixes for finding executables
 | 
|---|
| 1328 |                 o Don't load debug information
 | 
|---|
| 1329 |                 o Minor fix for PROCESSOR_IDENTIFIER environment variable
 | 
|---|
| 1330 |                   (model & stepping were reversed)
 | 
|---|
| 1331 |                 o Make sure stack is not aligned at 8 byte boundary before
 | 
|---|
| 1332 |                   calling executable entrypoint. Some applications rely on
 | 
|---|
| 1333 |                   this NT 'feature' and will suffer a performance penalty
 | 
|---|
| 1334 |                   otherwise.
 | 
|---|
| 1335 |                   (e.g. a certain Fortran compiler has startup code
 | 
|---|
| 1336 |                    that pushes an uneven number of dwords on the stack
 | 
|---|
| 1337 |                    before calling the Fortran code; FPU instructions
 | 
|---|
| 1338 |                    don't like to access memory at misaligned addresses)
 | 
|---|
| 1339 | 
 | 
|---|
| 1340 |  2001-06-25: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1341 |     - include\odin.h:
 | 
|---|
| 1342 |                 o Updated the EMX configuration so we can build WRC.exe
 | 
|---|
| 1343 |                   using this definition. This also includes the check and
 | 
|---|
| 1344 |                   calling convetions defined in windef.h.
 | 
|---|
| 1345 |                   Just note that gcc don't decorate the stdcall function
 | 
|---|
| 1346 |                   names like the other compilers.
 | 
|---|
| 1347 |                 o Made the other compilers ignore __attribute__ so they
 | 
|---|
| 1348 |                   can compile WRC.exe as well.
 | 
|---|
| 1349 |                 o Defined INLINE, inline and __inline__ so they all make
 | 
|---|
| 1350 |                   functions inline. (Someone should check this for Watcom C mode.)
 | 
|---|
| 1351 | 
 | 
|---|
| 1352 |     - include\win\wine\unicode.h:
 | 
|---|
| 1353 |                 o Added extern "C" so the unicode libraries are compilable as C code.
 | 
|---|
| 1354 |                   (kernel32\unicode was forced to compile as C++)
 | 
|---|
| 1355 |                 o Removed inline workaround for C compilers. (Odin stuff)
 | 
|---|
| 1356 |                 o Wrapped away static for those function which was declared as
 | 
|---|
| 1357 |                   both static and inline. (the compiler was so noisy)
 | 
|---|
| 1358 | 
 | 
|---|
| 1359 |     - kernel32\unicode, kernel32:
 | 
|---|
| 1360 |                 o Don't force it to C++.
 | 
|---|
| 1361 |                 o Demangled the one export from unicode, get_char_typeW.
 | 
|---|
| 1362 |                 o Curiosity: Made a minor correction to be able to compile
 | 
|---|
| 1363 |                              unicode.lib with EMX.
 | 
|---|
| 1364 | 
 | 
|---|
| 1365 |     - OpenGL:   o mesa\macros.h has been changed to not #define INLINE if
 | 
|---|
| 1366 |                   allready defined.
 | 
|---|
| 1367 |                   Hence inlining is now enabled!
 | 
|---|
| 1368 |                   Concider this an experiment as we might run into VAC optimizer bugs...
 | 
|---|
| 1369 |                   People are encouraged to play games ;-)
 | 
|---|
| 1370 | 
 | 
|---|
| 1371 |     - WRC:      o Use semicolon when reading include paths.
 | 
|---|
| 1372 |                   (This was what ALL I was supposed to fix today..)
 | 
|---|
| 1373 |                 o Made it compile with VAC and EMX using standard Odin32 makefiles.
 | 
|---|
| 1374 |                   flex and bison is not needed normally. But when changes which
 | 
|---|
| 1375 |                   requires running of these are made, define HAVE_FLEX
 | 
|---|
| 1376 |                   and HAVE_BISON in your environment.
 | 
|---|
| 1377 |                 o WRC is now removed and made as a 'needed_tool' together
 | 
|---|
| 1378 |                   with fastdep, impdef and the other stuff in the tools subdir.
 | 
|---|
| 1379 |                   NB. Be careful not to accidentally resurrects the /tools/bin/wrc.exe
 | 
|---|
| 1380 |                       archive! (May be we should rename the archive file later?)
 | 
|---|
| 1381 | 
 | 
|---|
| 1382 |     - include\odin32.*.emx.mk:
 | 
|---|
| 1383 |                 o Made it working for WRC.exe. (release and debug, not profiling)
 | 
|---|
| 1384 |                   Generats OMF. Linking using link386.
 | 
|---|
| 1385 | 
 | 
|---|
| 1386 |     - include\odin32.tools.*.mk:
 | 
|---|
| 1387 |                 o Disabled historic current directory inference rules and replaced
 | 
|---|
| 1388 |                   (some of them) with rules which puts object in OBJDIR.
 | 
|---|
| 1389 |                 o Added precompiler inference rules. These are generate a *.pre-c
 | 
|---|
| 1390 |                   or *.pre-cpp file in the current directory containing the output
 | 
|---|
| 1391 |                   from the precompiler. (not implemented for watcom yet)
 | 
|---|
| 1392 |                   This is very useful in when you wanna check a declaration...
 | 
|---|
| 1393 | 
 | 
|---|
| 1394 |  2001-06-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1395 |     - USER32:   o Minor WM_TIMER translation fix (weird check removed)
 | 
|---|
| 1396 | 
 | 
|---|
| 1397 |  2001-06-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1398 |     - KERNEL32: o Rewrote CopyFile & MoveFile (just call DosCopy/Move)
 | 
|---|
| 1399 |                 o Rewrote CreateDirectory & RemoveDirectory
 | 
|---|
| 1400 |                   (call DosCreateDir & DosDeleteDir)
 | 
|---|
| 1401 |                 o Fix for HeapRealloc; recent HeapSize fix broke it
 | 
|---|
| 1402 |                   (listboxes empty)
 | 
|---|
| 1403 | 
 | 
|---|
| 1404 |  2001-06-24: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1405 |     - src/makefile:
 | 
|---|
| 1406 |                 o Added empty subdir oslib to the NOTTOBEMADE list.
 | 
|---|
| 1407 |                   (Please don't forget this when you create empty directories.
 | 
|---|
| 1408 |                    All subdirs excluding the one mentioned in the lists in
 | 
|---|
| 1409 |                    makefile is made. So don't add a new directory without
 | 
|---|
| 1410 |                    either a makefile in it or updating /src/makefile.)
 | 
|---|
| 1411 | 
 | 
|---|
| 1412 |  2001-06-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1413 |     - KERNEL32: o HeapSize must return -1 for invalid pointer
 | 
|---|
| 1414 |                 o Semaphore updates (finished; not activated yet)
 | 
|---|
| 1415 |                 o Implemented IOCTL_CDROM_GET_VOLUME & IOCTL_CDROM_SET_VOLUME
 | 
|---|
| 1416 | 
 | 
|---|
| 1417 |  2001-06-23: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1418 |     - KERNEL32: o Added Odin32 Spesific API for getting Odin build number.
 | 
|---|
| 1419 |                   (Requested by Yuri.)
 | 
|---|
| 1420 | 
 | 
|---|
| 1421 |  2001-06-23: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 1422 |     - USER32:   o added OS/2 INI file access library (oslibprf)
 | 
|---|
| 1423 |                 o changed SystemParametersInfoA to no longer use Open32
 | 
|---|
| 1424 |                 o added more logging to GetMonitorInfoA/W
 | 
|---|
| 1425 | 
 | 
|---|
| 1426 |  2001-06-22: Markus Montkowski <mmontkowski@gmx.de>
 | 
|---|
| 1427 |     - TWAIN_32: o Updated initterm.cpp to use OS/2 and not Win32 APIs when loading
 | 
|---|
| 1428 |                   the OS/2 twain DLL. needed because of kernel32 change 2001-06-12
 | 
|---|
| 1429 | 
 | 
|---|
| 1430 |  2001-06-22: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1431 |     - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
 | 
|---|
| 1432 | 
 | 
|---|
| 1433 |  2001-06-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1434 |     - USER32:   o Don't fill background of system icon if no system icon
 | 
|---|
| 1435 |                   is present (could be seen in os/2 look mode)
 | 
|---|
| 1436 |                 o Reserved one window ulong (QWL_USER) for Odin apps (like Opera)
 | 
|---|
| 1437 |     - KERNEL32: o Semaphore updates (still not activated)
 | 
|---|
| 1438 | 
 | 
|---|
| 1439 |  2001-06-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1440 |     - KERNEL32: o Semaphore updates (still not activated)
 | 
|---|
| 1441 | 
 | 
|---|
| 1442 |  2001-06-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1443 |     - DDRAW:    o io_init1, io_init2 and io_exit1 forgot to save/restore EBX.
 | 
|---|
| 1444 |                   (Broke some apps when XF86Sup.sys is installed)
 | 
|---|
| 1445 | 
 | 
|---|
| 1446 |  2001-06-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1447 |     - include\win\winioctl.h:
 | 
|---|
| 1448 |                 o Added CDROM ioctls
 | 
|---|
| 1449 |     - KERNEL32: o Dummy CDROM ioctl support
 | 
|---|
| 1450 | 
 | 
|---|
| 1451 |  2001-06-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1452 |     - KERNEL32: o Started with event, mutex & semaphore rewrite
 | 
|---|
| 1453 |                   (code not activated)
 | 
|---|
| 1454 | 
 | 
|---|
| 1455 |  2001-06-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1456 |     - USER32:   o Added export entry for GetScrollBarInfo
 | 
|---|
| 1457 |                 o Set ordinals for some exports
 | 
|---|
| 1458 |                 o Correct size of SBS_SIZEBOX and SBS_SIZEGRIP scrollbars
 | 
|---|
| 1459 |                   during creation. (if too high or wide)
 | 
|---|
| 1460 |                   (CPOV bottom scrollbar now appears)
 | 
|---|
| 1461 |     - COMCTL32: o Wrong check in 6/17 comctl32 change
 | 
|---|
| 1462 | 
 | 
|---|
| 1463 |  2001-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1464 |     - KERNEL32: o Implemented IOCTL_SCSI_PASS_THROUGH_DIRECT storage ioctl
 | 
|---|
| 1465 |     - USER32:   o Fix for scrollbars with SBS_SIZEBOX or SBS_SIZEGRIP style
 | 
|---|
| 1466 |                   (use size specified in CreateWindow only if SBS_SIZEBOXTOPLEFTALIGN
 | 
|---|
| 1467 |                    nor SBS_SIZEBOXBOTTOMRIGHTALIGN style flags set)
 | 
|---|
| 1468 |                   (CPOV window now has the right size)
 | 
|---|
| 1469 |                 o Allow WS_VISIBLE changes in SetWindowLong (GWL_STYLE)
 | 
|---|
| 1470 |                   (CPOV controls in bottom left corner now visible)
 | 
|---|
| 1471 | 
 | 
|---|
| 1472 |  2001-06-17: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1473 |     - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
 | 
|---|
| 1474 |                   (fixes crash in SpeedCommander 6)
 | 
|---|
| 1475 |                 o Datetime control update with latest Wine code
 | 
|---|
| 1476 | 
 | 
|---|
| 1477 |  2001-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1478 |     - DDRAW:    o Save & Restore FS when calling io_init2
 | 
|---|
| 1479 |                 o Partly implemented DrawEnumDisplayModes4
 | 
|---|
| 1480 |     - WINMM:    o Resume failed (during waveOutWrite) after underrun
 | 
|---|
| 1481 |                   (fixes audio error message in Atari Emulator)
 | 
|---|
| 1482 |     - KERNEL32: o Implemented IOCTL_DISK_GET_DRIVE_GEOMETRY & IOCTL_DISK_GET_MEDIA_TYPES
 | 
|---|
| 1483 |                 o Allow direct sector reading from disk + changing read position
 | 
|---|
| 1484 |                   with SetFilePointer
 | 
|---|
| 1485 |                 o 6/14 kernel32 changes broke dynamic loading of LX dlls; getHMOD
 | 
|---|
| 1486 |                   returned the wrong module handle
 | 
|---|
| 1487 | 
 | 
|---|
| 1488 |  2001-06-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1489 |     - USER32:   o Removed yesterday's getControl dialog change.
 | 
|---|
| 1490 |                   (causes errors for certain installshield installers)
 | 
|---|
| 1491 |                 o Add frame controls when app changes style flags (os/2 appearance)
 | 
|---|
| 1492 |                   (fixes missing titlebar when switching between maximized &
 | 
|---|
| 1493 |                    restored state for MDI windows in Opera)
 | 
|---|
| 1494 |     - KERNEL32: o PDB.exit_code is a pointer to an unknown structure in NT
 | 
|---|
| 1495 |                   Fill it with a pointer to a memory block with 8th byte set to 1.
 | 
|---|
| 1496 |                   (fixes crash in AssetAllocator install)
 | 
|---|
| 1497 | 
 | 
|---|
| 1498 |  2001-06-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1499 |     - KERNEL32: o Correct bug in LoadLibrary which prevented dynamically
 | 
|---|
| 1500 |     - WIN32K:   o Forgot to close file on failure in ldrOpen. When Pe2Lx
 | 
|---|
| 1501 |                   failed (due to wrong subsystem), the file remained open.
 | 
|---|
| 1502 | 
 | 
|---|
| 1503 |  2001-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1504 |     - USER32:   o OSLibWinGetMsg: dispatch untranslated message immediately
 | 
|---|
| 1505 |                   and grab next one.
 | 
|---|
| 1506 |                 o Manually change min/max/restore button states (OS/2 appearance)
 | 
|---|
| 1507 |                 o Handle WM_SYSCOMMAND messages in frame window handler
 | 
|---|
| 1508 |                 o Button fix (Wine bug)
 | 
|---|
| 1509 |                   Must clear WS_TABSTOP of control that is already unchecked or
 | 
|---|
| 1510 |                   else multiple control can have this style ((auto)radiobutton)
 | 
|---|
| 1511 |                   and GetNextDlgTabItem will return the wrong one.
 | 
|---|
| 1512 |                   Happens in Opera preferences dialog (multimedia) where all
 | 
|---|
| 1513 |                   autoradio buttons have the WS_TABSTOP style.
 | 
|---|
| 1514 |                 o Added temporary workaround for Open32 crashes in Opera
 | 
|---|
| 1515 | 
 | 
|---|
| 1516 |  2001-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1517 |     - USER32:   o Corrected position of PM titlebar control
 | 
|---|
| 1518 |                 o Added SetWindowAppearance function that can be used
 | 
|---|
| 1519 |                   by Odin32 apps to override the appearance (win32 or OS/2)
 | 
|---|
| 1520 |                   of windows.
 | 
|---|
| 1521 |                 o Changed menu font for OS/2 appearance (bold)
 | 
|---|
| 1522 |                 o Draw system menu icon ourselves (OS/2 appearance)
 | 
|---|
| 1523 |                 o SetWindowText fix (OS/2 appearance)
 | 
|---|
| 1524 |                 o WM_ERASEBKGND handling changes for dialogs
 | 
|---|
| 1525 |     - GDI32:    o CreateDIBSection bugfix (wrong ReleaseDC call)
 | 
|---|
| 1526 | 
 | 
|---|
| 1527 |  2001-06-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1528 |     - WIN16LDR: o Made it compile with Watcom and MSC60.
 | 
|---|
| 1529 |                   Currently I can't link it with MSC60 form the DDK
 | 
|---|
| 1530 |                   since there is no window libraries there.
 | 
|---|
| 1531 |                   Watcom links fine. But the result is not tested.
 | 
|---|
| 1532 |     - VDMDBG:   o Stubbed this DLL. (It's used by the NT TaskMgr.)
 | 
|---|
| 1533 |                   (Documented in SDK, doc\misc\VDMDbg.Hlp. Which is included
 | 
|---|
| 1534 |                    in the NT sdk distributed with Watcom v11 - %WATCOM\sdk.)
 | 
|---|
| 1535 |     - Win32k/Pe2Lx:
 | 
|---|
| 1536 |                 o Allowed loading of images using the NATIVE subsystem.
 | 
|---|
| 1537 |                 o Added symbols for build 14.065F (2001-05-08) all kernels.
 | 
|---|
| 1538 |     - DailyBuild:
 | 
|---|
| 1539 |                 o Moved Odin.ini to system32 in daily .zips.
 | 
|---|
| 1540 |     - NTDLL:    o Stubbed NtOpenThread.
 | 
|---|
| 1541 | 
 | 
|---|
| 1542 |  2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1543 |     - USER32:   o Partly fixed position of PM frame controls
 | 
|---|
| 1544 |                 o FillRect fix for 0 brush
 | 
|---|
| 1545 |                 o Workaround for windows with CS_CLASSDC class. Use same
 | 
|---|
| 1546 |                   mechanism as CS_OWNDC. (might not always work though)
 | 
|---|
| 1547 |                   No (easy) way to share a single DC between windows in PM.
 | 
|---|
| 1548 |                   (fixes paint problems in MED)
 | 
|---|
| 1549 |                 o Use critical sections for local hooks; faster than
 | 
|---|
| 1550 |                   kernel mutex semaphore calls.
 | 
|---|
| 1551 |     - GDI32:    o SetDIBColorTable bugfix
 | 
|---|
| 1552 |     - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
 | 
|---|
| 1553 |                   (Winbench tries this)
 | 
|---|
| 1554 |     - ADVAPI32: o Pretend no services found in EnumServicesStatusA/W instead of
 | 
|---|
| 1555 |                   returning error.
 | 
|---|
| 1556 |                   (prevents crash in Winbench)
 | 
|---|
| 1557 | 
 | 
|---|
| 1558 |  2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1559 |     - USER32:   o Reference count bugfixes
 | 
|---|
| 1560 |     - GDI32:    o Added RGB555 conversion for CreateDIBitmap & SetDIBits
 | 
|---|
| 1561 | 
 | 
|---|
| 1562 |  2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1563 |     - USER32:   o SetParent bugfix (caused crashes in user32 after yesterday's changes)
 | 
|---|
| 1564 |                 o Preliminary support added for OS/2 look and feel (not finished)
 | 
|---|
| 1565 |                   Odin.ini option:
 | 
|---|
| 1566 |                   [ODINSYSTEM]
 | 
|---|
| 1567 |                   OS2Look=1      (default = 0)
 | 
|---|
| 1568 |                   Creates OS/2 Titlebar, system menu & min/max/close buttons.
 | 
|---|
| 1569 |                   Also overrides UseWinColors option (uses OS/2 colors).
 | 
|---|
| 1570 |                   NOTE: Can interfere with windows applications that draw their
 | 
|---|
| 1571 |                         own custom titlebar. (e.g. RealPlayer)
 | 
|---|
| 1572 |     - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
 | 
|---|
| 1573 |                 o CreateProcess: launch win16 loader for NE executables
 | 
|---|
| 1574 |     - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
 | 
|---|
| 1575 |                   Overrides GetVersion & WinExec functions to return the
 | 
|---|
| 1576 |                   version NT returns and to launch 32 bits programs (using pe).
 | 
|---|
| 1577 |                   (NOT FINISHED and not included in daily build)
 | 
|---|
| 1578 |     - PELDR:    o Execute win16 loader for NE executables.
 | 
|---|
| 1579 | 
 | 
|---|
| 1580 |  2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1581 |     - Win32API.h:
 | 
|---|
| 1582 |                 o Added APIs required to compile user32.
 | 
|---|
| 1583 |     - src/makefile:
 | 
|---|
| 1584 |                 o Relaxed the locks a little.
 | 
|---|
| 1585 |     - Win32k:   o Separated VAC3 and VAC36 output. (Please re-run configure!)
 | 
|---|
| 1586 |     - makefiles/VAC36:
 | 
|---|
| 1587 |                 o Ignore ILIB warnings. (like those in the opengl tree)
 | 
|---|
| 1588 | 
 | 
|---|
| 1589 |  2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1590 |     - USER32:   o Keep reference count for window and class objects.
 | 
|---|
| 1591 |                   Only delete the objects when nobody else is using them anymore.
 | 
|---|
| 1592 |                   (fixes crashes due to premature destruction of objects;
 | 
|---|
| 1593 |                    e.g. during Napster startup)
 | 
|---|
| 1594 |     - KERNEL32: o heap checking accidentally turned on during logging
 | 
|---|
| 1595 |                   (making the debug build extremely slow)
 | 
|---|
| 1596 |                 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
 | 
|---|
| 1597 |                   no apparent reason. Don't bail out when that happens, but try
 | 
|---|
| 1598 |                   to create the process anyway.
 | 
|---|
| 1599 |                   (fixes CreateProcess during Napster install)
 | 
|---|
| 1600 |                 o Improved version of InterlockedIncrement & InterlockedDecrement
 | 
|---|
| 1601 |                   (borrowed from Wine)
 | 
|---|
| 1602 | 
 | 
|---|
| 1603 |  2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1604 |     - KERNEL32: o WinExec fixes
 | 
|---|
| 1605 |                 o Ported Wine's WritePrivateProfileSectionA
 | 
|---|
| 1606 |     - GDI32:    o DIB Section blits: translate all ROPs
 | 
|---|
| 1607 |                 o GetDIBits fix; RGB conversion was not always performed;
 | 
|---|
| 1608 |                   now only for requested scanlines.
 | 
|---|
| 1609 | 
 | 
|---|
| 1610 |  2001-06-08: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1611 |     - KERNEL32: o Optimizations for loading of PE images
 | 
|---|
| 1612 | 
 | 
|---|
| 1613 |  2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1614 |     - OLE32:    o More VAC 3.6.5 compile fixes
 | 
|---|
| 1615 | 
 | 
|---|
| 1616 |  2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1617 |     - FastDep:  o Performance enh. Don't scan files more than 1 month older
 | 
|---|
| 1618 |                   than existing .depend file.
 | 
|---|
| 1619 |                 o Optimized AVL tree sligtly by not performing two strcmp
 | 
|---|
| 1620 |                   on the same keys (but resuing the result from the first).
 | 
|---|
| 1621 |                 o Improved dependencies genereated for OS/2 resource files.
 | 
|---|
| 1622 |                   (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
 | 
|---|
| 1623 |                 o Code is now in sync with OS2Tools.
 | 
|---|
| 1624 | 
 | 
|---|
| 1625 |  2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1626 |     - OLE32:    o VAC 3.6.5 compile fix
 | 
|---|
| 1627 | 
 | 
|---|
| 1628 |  2001-06-05: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1629 |     - KERNEL32: o Fixed ordinal export resolving for PE executables
 | 
|---|
| 1630 |                   (SO52 complained about missing exports)
 | 
|---|
| 1631 | 
 | 
|---|
| 1632 |  2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1633 |     - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
 | 
|---|
| 1634 |                   (fixes endless repainting loop in WinRAR 2.80)
 | 
|---|
| 1635 |     - KERNEL32: o Optimized ordinal lookup even more.
 | 
|---|
| 1636 |                   (6900 ordinal lookups takes (on average) 31 ms now instead
 | 
|---|
| 1637 |                    of 78)
 | 
|---|
| 1638 | 
 | 
|---|
| 1639 |  2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1640 |     - KERNEL32: o Added driver dll plugin for custom device driver emulation
 | 
|---|
| 1641 |                   Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
 | 
|---|
| 1642 |                   that contain 'DllName' keys.
 | 
|---|
| 1643 |                   DllName contains the name of the plugin dll that exports
 | 
|---|
| 1644 |                   DrvOpen, DrvClose & DrvIOCtl.
 | 
|---|
| 1645 |                 o Dispatch breakpoint exception to application (release build only)
 | 
|---|
| 1646 |                   Some nasty applications expect this.
 | 
|---|
| 1647 | 
 | 
|---|
| 1648 |  2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1649 |     - USER32:   o Ported & fixed ScrollDC (Wine)
 | 
|---|
| 1650 |                   (fixes scrolling in Adobe Framemaker 5.5)
 | 
|---|
| 1651 |     - GDI32:    o RGB 565->555 conversion in GetDIBits
 | 
|---|
| 1652 |                 o RGB 555->565 conversion in DIB Section sync
 | 
|---|
| 1653 |                 o Sync DIB section in RealizePalette if any colors changed
 | 
|---|
| 1654 |                   (fixes PowerDVD colors)
 | 
|---|
| 1655 | 
 | 
|---|
| 1656 |  2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1657 |     - Win32k/configure.cmd:
 | 
|---|
| 1658 |                 o Corrected search for the VAC compiler.
 | 
|---|
| 1659 |                 o Removed stupid messages when -w is specified.
 | 
|---|
| 1660 | 
 | 
|---|
| 1661 |  2001-06-02: Achim Hasenmueller <achimha@innotek.de>
 | 
|---|
| 1662 |     - COMDLG32: o fix crash due to uninitialized COM object pointer in
 | 
|---|
| 1663 |                   Win95 open file dialog browse mode
 | 
|---|
| 1664 |                 o default to open mode in file dialog when the
 | 
|---|
| 1665 |                   OFN_NOVALIDATE mode is used
 | 
|---|
| 1666 |                   (fixes crash in FrameMaker 5.5 file dialog when opening
 | 
|---|
| 1667 |                    a file that has broken image references)
 | 
|---|
| 1668 |     - KERNEL32: o log both error and no error conditions for GetLastError
 | 
|---|
| 1669 |                   with default error level. Sometimes, we don't set an error
 | 
|---|
| 1670 |                   where we should so this logging information is important
 | 
|---|
| 1671 |                 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
 | 
|---|
| 1672 |                   CreateFileA to open a non existing file.
 | 
|---|
| 1673 |                   DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
 | 
|---|
| 1674 |                   Verified with Windows 2000 SP2
 | 
|---|
| 1675 |                   (makes Acrobat Distiller 5.0 startup and work!)
 | 
|---|
| 1676 | 
 | 
|---|
| 1677 |  2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1678 |     - WINMM:    o Default waveout volume can be controlled by a key in odin.ini:
 | 
|---|
| 1679 |                   [WINMM]
 | 
|---|
| 1680 |                   DefVolume=50[0-100] Default waveout volume (default = 100)
 | 
|---|
| 1681 |     - USER32:   o ScrollDC fix for translating clip & scroll rectangles
 | 
|---|
| 1682 |                   (fixes scrolling in Adobe Framemaker 5.5)
 | 
|---|
| 1683 | 
 | 
|---|
| 1684 |  2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1685 |     - USER32:   o Send WM_HELP if F1 pressed & no menu active
 | 
|---|
| 1686 |                 o Disabled system hooks (only work in one process)
 | 
|---|
| 1687 |     - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
 | 
|---|
| 1688 |                   barely noticable with 'real' applications)
 | 
|---|
| 1689 |     - OLE32:    o Added OleLoadPictureEx stub
 | 
|---|
| 1690 |     - GDI32:    o GetDIBits fix for querying the bitmap information
 | 
|---|
| 1691 |                   WGSS returns 0, but we should return the nr of scan lines requested
 | 
|---|
| 1692 |                 o GetDIBits fix for memory dcs. WGSS messes things up if
 | 
|---|
| 1693 |                   it's a memory DC.
 | 
|---|
| 1694 |                   (fixes lower right button in AIM's logon window when typing
 | 
|---|
| 1695 |                    in new name)
 | 
|---|
| 1696 |                 o ExtTextOutA/W fix for filling rectangle with background color
 | 
|---|
| 1697 |                   only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
 | 
|---|
| 1698 |                   (fixes border between menu & button bar in Odin MFC app &
 | 
|---|
| 1699 |                    Acrobat Reader 4.05)
 | 
|---|
| 1700 |                 o StretchDIBits fix for RGB555 bitmaps
 | 
|---|
| 1701 |                   (fixes pictures in pdf files shown by Acrobat Reader 4.05)
 | 
|---|
| 1702 |     - SHLWAPI:  o Added PathGetCharTypeA/W from Wine
 | 
|---|
| 1703 | 
 | 
|---|
| 1704 |  2001-06-01: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1705 |     - KERNEL32: o benchmarked new experimental loader and reverted to
 | 
|---|
| 1706 |                   old but slightly optimized loader (processExport usually
 | 
|---|
| 1707 |                   outweighs processImport, so lookup is less valuable than
 | 
|---|
| 1708 |                   add to export list)
 | 
|---|
| 1709 |     - SHELL32:  o SIC_Initialize took extremely long to pre-initialize
 | 
|---|
| 1710 |                   its icon cache. Revert to on-demand loading of the icons,
 | 
|---|
| 1711 |                   speeds up loading of SHELL32 (therefore most apps)
 | 
|---|
| 1712 |                   by several seconds.
 | 
|---|
| 1713 | 
 | 
|---|
| 1714 |  2001-05-31: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1715 |     - OLEAUT32: o Fixed ITypeInfoImpl_Invoke
 | 
|---|
| 1716 | 
 | 
|---|
| 1717 |  2001-05-30: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1718 |     - KERNEL32: o further performance improvement of hashtables
 | 
|---|
| 1719 |                 o fixes for loader improvements (PE, LX)
 | 
|---|
| 1720 |                 o Todo: measuring new code, reducing memory requirements                
 | 
|---|
| 1721 | 
 | 
|---|
| 1722 |  2001-05-30: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1723 |     - USER32:   o RedrawWindow: don't clear erase background flag if the 
 | 
|---|
| 1724 |                   window is already (partly) invalidated.
 | 
|---|
| 1725 |                   (fixes redrawing of dialogs controls in mIRC startup dialog 
 | 
|---|
| 1726 |                    window (when switching option windows))
 | 
|---|
| 1727 |     - KERNEL32: o Put back old lookup code. 
 | 
|---|
| 1728 |                   New files renamed to winimagepeldr_new.cpp/h
 | 
|---|
| 1729 |                   (Odin test app crashes; looks like MFC42 ordinal lookup
 | 
|---|
| 1730 |                    fails somewhere)
 | 
|---|
| 1731 |     - OLEAUT32: o Added RegisterTypeLib (ported recent Wine patch) &
 | 
|---|
| 1732 |                   UnRegisterTypeLib
 | 
|---|
| 1733 |                 o Added ITypeInfoImpl_Invoke (ported Francois Jacques'
 | 
|---|
| 1734 |                   (refused) patch and rewrote it to get rid of stack
 | 
|---|
| 1735 |                   layout dependency.
 | 
|---|
| 1736 |                 o VT_HRESULT -> VT_INT conversion added to Coerce
 | 
|---|
| 1737 |                   (all needed for Quicken Deluxe 2001; still crashes, but
 | 
|---|
| 1738 |                    gets passed data loading)
 | 
|---|
| 1739 |     - OLE32:    o OleRun: check pointer with IsValidInterface
 | 
|---|
| 1740 |                   (fixes crash in Quicken after data loading)
 | 
|---|
| 1741 | 
 | 
|---|
| 1742 |  2001-05-30: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1743 |     - KERNEL32: o replaced linear lists in PE loader with faster hashtables
 | 
|---|
| 1744 |                   (ccollection.cpp, experimental)
 | 
|---|
| 1745 |                   ToDo: measure any difference, revert eventualls
 | 
|---|
| 1746 | 
 | 
|---|
| 1747 |  2001-05-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1748 |     - GDI32:    o Set/GetDIBColorTable fixes for DIB sections with bpp > 8
 | 
|---|
| 1749 |                 o Don't sync DIB section in SelectPalette if bForceBackground
 | 
|---|
| 1750 |                   is -1. (hack for bitmap buttons in Beyond Compare)
 | 
|---|
| 1751 |     - DCIMAN32: o Updated & return proper error codes
 | 
|---|
| 1752 | 
 | 
|---|
| 1753 |  2001-05-28: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1754 |     - GDI32:    o Split GDI32.CPP into ICM.CPP and GDI32.CPP
 | 
|---|
| 1755 |                 o CreateDC() accepts "display" instead of "DISPLAY"
 | 
|---|
| 1756 |                   (fixes font-not-found problem in ZD Bench 99)
 | 
|---|
| 1757 |     - KERNEL32: o mmap.cpp: slightly accelerated ::findMapByView()
 | 
|---|
| 1758 |                 o directory.cpp: don't trap in CreateDirectory(NULL, NULL)                
 | 
|---|
| 1759 |     - DDRAW:    o implemented DirectDrawCreateClipper()
 | 
|---|
| 1760 |     - WOW32:    o created initial (fake) version of WOW32.DLL
 | 
|---|
| 1761 |                   (SBLiveXP accesses this directly)
 | 
|---|
| 1762 | 
 | 
|---|
| 1763 |  2001-05-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1764 |     - COMCTL32: o Listview: merged old LISTVIEW_EnsureVisible
 | 
|---|
| 1765 |                   (gets rid of excessive repaints)
 | 
|---|
| 1766 |     - USER32:   o Replaced TabbedTextOutA/W & GetTabbedTextExtentA/W with
 | 
|---|
| 1767 |                   Wine version. GPI doesn't support strings > 512 characters.
 | 
|---|
| 1768 |     - GDI32:    o Commented out InternalTabbedTextOutA/W & InternalGetTabbedTextExtentA/W
 | 
|---|
| 1769 | 
 | 
|---|
| 1770 |  2001-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1771 |     - COMCTL32: o Datetime control resync with Wine (get/setrange added)
 | 
|---|
| 1772 | 
 | 
|---|
| 1773 |  2001-05-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1774 |     - Odin.ini: o Removed MS Shell Dlg font mapping
 | 
|---|
| 1775 |     - GDI32:    o Synchronize DIB Section after SelectPalette call (if selected in DC)
 | 
|---|
| 1776 |                   (fixes wrong colors for some bitmaps)
 | 
|---|
| 1777 |                 o Update bitmap and synchronize DIB Section in SetDIBits
 | 
|---|
| 1778 |                 o Update color table during DIB sync too
 | 
|---|
| 1779 |     - USER32:   o Dialog control x & y coordinates in dialog template are signed 
 | 
|---|
| 1780 |                   words. (fixes dialog controls with negative offset)
 | 
|---|
| 1781 |                 o Rewrote Post(Thread)/SendMessage; filtering of posted/sent
 | 
|---|
| 1782 |                   messages (by app) is now possible with Peek/GetMessage.
 | 
|---|
| 1783 |                 o PeekMessage fix; got rid of double removal for untranslated 
 | 
|---|
| 1784 |                   messages
 | 
|---|
| 1785 | 
 | 
|---|
| 1786 |  2001-05-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1787 |     - GDI32:    o Commented out recent changes (color conversion) in
 | 
|---|
| 1788 |                   SetDIBitsToDevice. Breaks startup bitmap of Acrobat Reader 4
 | 
|---|
| 1789 |                 o GetTextExtentPointA; call WGSS instead.
 | 
|---|
| 1790 |                   Better result (strings not clipped).
 | 
|---|
| 1791 |     - KERNEL32: o OpenFile fix for OF_REOPEN flag (crashes when looking up
 | 
|---|
| 1792 |                   handle)
 | 
|---|
| 1793 |     - IPHLPAPI  o Added stub dll
 | 
|---|
| 1794 | 
 | 
|---|
| 1795 |  2001-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1796 |     - USER32:   o RedrawWindow with desktop window handle no longer returns
 | 
|---|
| 1797 |                   an error.
 | 
|---|
| 1798 |                   (fixes RealPlayer Auto Size window)
 | 
|---|
| 1799 |     - Odin.ini  o Added font mapping for MS Shell Dlg to WarpSans
 | 
|---|
| 1800 |                   (gets rid of ugly fonts (in dialogs) which also have the wrong
 | 
|---|
| 1801 |                    size (text clipping))
 | 
|---|
| 1802 |     - KERNEL32: o CreateFile for partitions; handle lookup fails if 
 | 
|---|
| 1803 |                   OS/2 handle is set to -1 (happens if disk not inserted)
 | 
|---|
| 1804 |                   -> set to 0 instead
 | 
|---|
| 1805 | 
 | 
|---|
| 1806 |  2001-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1807 |     - COMCTL32: o Partial merge of listview control with latest Wine
 | 
|---|
| 1808 |                 o Listview: Send WM_MEASUREITEM for controls with
 | 
|---|
| 1809 |                   LVS_OWNERDRAWFIXED style.
 | 
|---|
| 1810 |                   (TODO: sets size for all items only)
 | 
|---|
| 1811 |                   (fixes wrong item size for VirtualPC main window)
 | 
|---|
| 1812 |     - USER32:   o Fixed minimizing & restoring of top-level windows
 | 
|---|
| 1813 |     - KERNEL32: o Check name before adding dependency for module in
 | 
|---|
| 1814 |                   order to avoid circular dependencies (WNETAP32 (== NETAPI32)
 | 
|---|
| 1815 |                   imports from NETAPI32)
 | 
|---|
| 1816 |                   (fixes crash at exit in VirtualPC)
 | 
|---|
| 1817 | 
 | 
|---|
| 1818 |  2001-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1819 |     - GDI32:    o Fixed LPtoDP/DPtoLP again.
 | 
|---|
| 1820 |     - USER32:   o Paint menu item first before destroying it
 | 
|---|
| 1821 |                   (prevents menu control from painting selected item on
 | 
|---|
| 1822 |                    desktop)
 | 
|---|
| 1823 |                 o Don't show or hide scrollbar in SetScrollInfo if
 | 
|---|
| 1824 |                   scroll parameters didn't change.
 | 
|---|
| 1825 |                   (fixes loop in VirtualPC settings dialog)
 | 
|---|
| 1826 | 
 | 
|---|
| 1827 |  2001-05-20: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1828 |     - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fixes (Get/SetLocaleInfo)
 | 
|---|
| 1829 | 
 | 
|---|
| 1830 |  2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1831 |     - win32k:   o Added improvements from Rafal, better validation of the
 | 
|---|
| 1832 |                   paths which are found. Might cause some warnings for
 | 
|---|
| 1833 |                   some of you, but just read and ignore them.
 | 
|---|
| 1834 |                   Run configure.cmd (one of them)!
 | 
|---|
| 1835 | 
 | 
|---|
| 1836 |  2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1837 |     - GDI32:    o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
 | 
|---|
| 1838 |                   illegal values (TODO: check what NT does)
 | 
|---|
| 1839 |                   (fixes huge buttons in VirtualPC dialog (font with wrong
 | 
|---|
| 1840 |                    height created))
 | 
|---|
| 1841 |     - INCLUDE\odinwrap.h:
 | 
|---|
| 1842 |                 o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
 | 
|---|
| 1843 |                   and restore FS!!!
 | 
|---|
| 1844 |                   (FS corruption in release build; mainly affects wsock32)
 | 
|---|
| 1845 |     - WS2_32:   o Added more exports
 | 
|---|
| 1846 |     - KERNEL32: o Export TryEnterCriticalSection
 | 
|---|
| 1847 |                 o InterlockedCompareExchange bugfix; should not always return
 | 
|---|
| 1848 |                   old destination; return whatever cmpxchg puts in eax
 | 
|---|
| 1849 |     - SHLWAPI:  o Export SHSetValueW
 | 
|---|
| 1850 |                 o Ordinal export 342 is InterlockedCompareExchange implementation
 | 
|---|
| 1851 |                   Takes 3 parameters, not 4. (Wine bug)
 | 
|---|
| 1852 |                 o Ordinal export 151 takes 3 parameters, not zero.
 | 
|---|
| 1853 |                 o Implemented SHLWAPI_151 (case sensitive string compare
 | 
|---|
| 1854 |                   with length; ascii version of SHLWAPI_152)
 | 
|---|
| 1855 |                 o Implemented SHLWAPI_153 (case insensitive string compare
 | 
|---|
| 1856 |                   with length (ascii))
 | 
|---|
| 1857 |                 o Added SHLWAPI_154 (case insensitive string compare with
 | 
|---|
| 1858 |                   length (unicode))
 | 
|---|
| 1859 |     - USER32:   o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
 | 
|---|
| 1860 |     - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
 | 
|---|
| 1861 |                 o Set lasterror in EnumServicesStatusA/W stubs
 | 
|---|
| 1862 |     - GDI32:    o GetTextExtentPointA now handles strings larger than 512
 | 
|---|
| 1863 |                   characters.
 | 
|---|
| 1864 | 
 | 
|---|
| 1865 |  2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1866 |     - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
 | 
|---|
| 1867 | 
 | 
|---|
| 1868 |  2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1869 |     - KERNEL32: o Fixed FS corruption in LCMapStringA/W
 | 
|---|
| 1870 |                 o ole2nls: resync with latest Wine sources
 | 
|---|
| 1871 | 
 | 
|---|
| 1872 |  2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1873 |     - USER32:   o InvalidateRect & InvalidateRgn must call RedrawWindow
 | 
|---|
| 1874 |                   with RDW_ALLCHILDREN flag.
 | 
|---|
| 1875 |                   (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
 | 
|---|
| 1876 |                    style -> InvalidateRect overwrites child windows (buttons))
 | 
|---|
| 1877 | 
 | 
|---|
| 1878 |  2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1879 |     - USER32:   o Destroy menu windows when they are no longer used.
 | 
|---|
| 1880 |                   (fixes activation problems with dialogs created after
 | 
|---|
| 1881 |                    selecting a menu item)
 | 
|---|
| 1882 |                   (TODO: sync with latest wine menu control sourcecode)
 | 
|---|
| 1883 |                 o clientHeight bugfix (fixes crash in Solitaire)
 | 
|---|
| 1884 |                 o Check if another app changed mouse cursor (Get/SetCursor)
 | 
|---|
| 1885 |                   (previously mouse cursor did not change back if another
 | 
|---|
| 1886 |                    app modified it)
 | 
|---|
| 1887 | 
 | 
|---|
| 1888 |  2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1889 |     - USER32:   o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
 | 
|---|
| 1890 |                   both client and frame window.
 | 
|---|
| 1891 |                   (winhlp32 buttons are now visible again)
 | 
|---|
| 1892 | 
 | 
|---|
| 1893 |  2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1894 |     - Tools\bin:o Synced with other projects using the same tools.
 | 
|---|
| 1895 | 
 | 
|---|
| 1896 |  2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1897 |     - USER32:   o BeginPaint must return logical points instead of device points.
 | 
|---|
| 1898 |                   (not the same if e.g. app changes page viewport)
 | 
|---|
| 1899 |                   (fixes scaling in Opera)
 | 
|---|
| 1900 |                 o SetFocus fix; manual activation of windows; PM sometimes
 | 
|---|
| 1901 |                   changes the Z-order of the window being activated.
 | 
|---|
| 1902 |                   Also call WH_CBT hook handler (if present)
 | 
|---|
| 1903 |                   (fixes hotlist window in Opera)
 | 
|---|
| 1904 |     - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
 | 
|---|
| 1905 |                   if true. (verified in NT4, SP6)
 | 
|---|
| 1906 | 
 | 
|---|
| 1907 |  2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1908 |     - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
 | 
|---|
| 1909 |     - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
 | 
|---|
| 1910 |                   Wrong assumption about lParam as it's not always a pointer
 | 
|---|
| 1911 |                   (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
 | 
|---|
| 1912 | 
 | 
|---|
| 1913 |  2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1914 |     - COMCTL32: o Fixed wrong return values for datetime control
 | 
|---|
| 1915 |                   (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
 | 
|---|
| 1916 | 
 | 
|---|
| 1917 |  2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1918 |     - USER32:   o Rewrote window handling. Back to using frame and client windows
 | 
|---|
| 1919 |                   for each win32 window.
 | 
|---|
| 1920 |                   (fixes visible region problems with e.g. Opera)
 | 
|---|
| 1921 |                   Frame windows never have the WS_CLIPCHILDREN style; this caused
 | 
|---|
| 1922 |                   the transparency problems reported earlier when using this method.
 | 
|---|
| 1923 |                   E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
 | 
|---|
| 1924 |                         painting algorithm stops top-down search when it finds
 | 
|---|
| 1925 |                         a window with WS_CLIPCHILDREN style
 | 
|---|
| 1926 |                         -> result: dialog window won't update groupbox background
 | 
|---|
| 1927 |                                    as groupbox only draws the border
 | 
|---|
| 1928 |                 o UpdateWindow: Must use frame window handle even though
 | 
|---|
| 1929 |                   UpdateWindow only updates the client area.
 | 
|---|
| 1930 |                   If the frame window has a valid update region and we call
 | 
|---|
| 1931 |                   WinUpdateWindow for the client window, then no WM_PAINT
 | 
|---|
| 1932 |                   messages will be sent.
 | 
|---|
| 1933 |                 o Don't erase background in RedrawWindow (invalidate) when
 | 
|---|
| 1934 |                   RDW_ERASE flag not set.
 | 
|---|
| 1935 |                   (gets rid of excessive background redraws (flickering) for
 | 
|---|
| 1936 |                    progress windows in some installers)
 | 
|---|
| 1937 |                 o Fixed ScrollWindow bug
 | 
|---|
| 1938 |                 o WM_SHOWWINDOW sent twice
 | 
|---|
| 1939 |                 o Mark window's visible region as changed when client receives
 | 
|---|
| 1940 |                   WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
 | 
|---|
| 1941 |                   flag is set (regardless of erase flag set by RedrawWindow)
 | 
|---|
| 1942 |                 o ScrollDC fix (window handle transation)
 | 
|---|
| 1943 |                 o ScrollDC and ScrollWindowEx bugfix (setting update region)
 | 
|---|
| 1944 |                   (fixes scrolling in MS Word 97)
 | 
|---|
| 1945 |     - GDI32:    o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
 | 
|---|
| 1946 |                   (fixes pictures in (some) documents for Word 97)
 | 
|---|
| 1947 |                   TODO: Probably need to check bitfields and convert for some
 | 
|---|
| 1948 |                         other blit functions
 | 
|---|
| 1949 | 
 | 
|---|
| 1950 |  2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
 | 
|---|
| 1951 |     - GDI32:    o Rop conversion for DIB Section blits
 | 
|---|
| 1952 |                 o Support for negative height (origin top left) in
 | 
|---|
| 1953 |                   SetDIBitsToDevice + StretchDIBits
 | 
|---|
| 1954 | 
 | 
|---|
| 1955 |  2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1956 |     - GDI32:    o includeBottomRightPoint bugfix; if left == right or top == bottom
 | 
|---|
| 1957 |                   then the rectangle isn't empty. (include/include input)
 | 
|---|
| 1958 |                   (fixes e.g. missing erase background when slowly moving window
 | 
|---|
| 1959 |                    over Odin window (full window dragging enabled))
 | 
|---|
| 1960 | 
 | 
|---|
| 1961 |  2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1962 |     - src/ws2help, bin/debug, bin/release, src/win32k/list,
 | 
|---|
| 1963 |       src/win32k/debug:
 | 
|---|
| 1964 |                 o Removed directories. These were either not needed
 | 
|---|
| 1965 |                   or unused. I did this now since I was going to
 | 
|---|
| 1966 |                   remove ws2help anyway and there by breaking your tree.
 | 
|---|
| 1967 |     - tools/bin/CVSRemoveDeletedDirs.cmd:
 | 
|---|
| 1968 |                 o Rexx script which removes the above directories
 | 
|---|
| 1969 |                   from your local tree. Run this from the root of the tree.
 | 
|---|
| 1970 |                   To physically remove the directories you have to specify
 | 
|---|
| 1971 |                   REMOVE as argument (no dash or slash!).
 | 
|---|
| 1972 | 
 | 
|---|
| 1973 |  2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 1974 |     - src/makefile:
 | 
|---|
| 1975 |                 o Ignore WS2HELP for the moment.
 | 
|---|
| 1976 |                   (Never add empty subdirs to /src without making
 | 
|---|
| 1977 |                    /src/makefile ignore it!)
 | 
|---|
| 1978 | 
 | 
|---|
| 1979 |  2001-05-07: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 1980 |     - WS2_32:   o created skeleton and added forwarders to WSOCK32
 | 
|---|
| 1981 |     - KERNEL32: o CreateProcess error handling corrected, if
 | 
|---|
| 1982 |                   O32_CreateProcess fails with specific reason
 | 
|---|
| 1983 | 
 | 
|---|
| 1984 |  2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 1985 |     - SHELL32:  o Update for SHFileOperationA (FO_MOVE)
 | 
|---|
| 1986 | 
 | 
|---|
| 1987 |  2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1988 |     - USER32:   o FrameTrackFrame bugfix for moving child windows
 | 
|---|
| 1989 | 
 | 
|---|
| 1990 |  2000-05-03: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 1991 |     - USER32:   o SendNCCalcSize call bugfix (client rectangle parameter)
 | 
|---|
| 1992 |                 o Fix for groupbox WM_SETFONT handler. Must erase top part
 | 
|---|
| 1993 |                   if font is changed.
 | 
|---|
| 1994 |     - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
 | 
|---|
| 1995 | 
 | 
|---|
| 1996 |  2001-04-30: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 1997 |     - DSOUND:   o DirectAudio interface updates
 | 
|---|
| 1998 |     - WINMM:    o Odin.ini key to switch between DART & DirectAudio (see odin.ini.txt)
 | 
|---|
| 1999 | 
 | 
|---|
| 2000 |  2001-04-29: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 2001 |     - SHELL32:  o Update for SHFileOperationA (FO_COPY)
 | 
|---|
| 2002 | 
 | 
|---|
| 2003 |  2001-04-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2004 |     - COMCTL32: o Resync with latest Wine (20010418) (animate, comboex, rebar, 
 | 
|---|
| 2005 |                   status, tab)
 | 
|---|
| 2006 |     - WINMM:    o Don't start playback if stream is paused (waveOutWrite)
 | 
|---|
| 2007 |                   (only affects DART playback; prevents out of sync
 | 
|---|
| 2008 |                    video & audio in RealPlayer)
 | 
|---|
| 2009 |     - WSOCK32:  o Save FS before calling _beginthread
 | 
|---|
| 2010 | 
 | 
|---|
| 2011 |  2001-04-28: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 2012 |     - SHELL32:  o Updates and fixes for SHFileOperationA (FO_COPY)
 | 
|---|
| 2013 | 
 | 
|---|
| 2014 |  2000-04-28: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 2015 |     - WSOCK32:  o Send FD_READ notification even if nr of bytes read = 0
 | 
|---|
| 2016 |                 o Corrected error return for recv
 | 
|---|
| 2017 |                   (fixes for Opera) 
 | 
|---|
| 2018 |     - KERNEL32: o dprintf(NULL) flushes log stream
 | 
|---|
| 2019 | 
 | 
|---|
| 2020 |  2001-04-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2021 |     - SHELL32:  o Resync with latest Wine (20010418) + merged Odin fixes/additions
 | 
|---|
| 2022 |     - SHLWAPI:  o Resync with latest Wine (20010418) + merged Odin fixes/additions
 | 
|---|
| 2023 |     - KERNEL32: o Added GetSystemWindowsDirectoryA/W exports
 | 
|---|
| 2024 |     - USER32:   o Don't use PM api directly in dialog message loop. Must call
 | 
|---|
| 2025 |                   PeekMessageA & GetMessageA. (or else the WH_MSGFILTER hook
 | 
|---|
| 2026 |                   won't be called)
 | 
|---|
| 2027 |                 o Check WM_(SYS)MSGFILTER hooks in DoDialogBox
 | 
|---|
| 2028 | 
 | 
|---|
| 2029 |  2001-04-28: Markus Montkowski <mmontkowski@gmx.de|
 | 
|---|
| 2030 |     - MSVFW32:  o Fixed ICOpen, check and correct fccType from VIDC to vidc.
 | 
|---|
| 2031 |                   Videocodecs do load now.
 | 
|---|
| 2032 | 
 | 
|---|
| 2033 |  2001-04-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2034 |     - USER32:   o Call WH_GETMESSAGE hook handler from GetMessage and PeekMessage
 | 
|---|
| 2035 |                   (if message present)
 | 
|---|
| 2036 |                 o Added (not 100% correct) filtering for nonclient mouse messages
 | 
|---|
| 2037 |                   (fixes nonclient messages for MS Word 97 (frame & menu mouse actions))
 | 
|---|
| 2038 |                 o Recalculate HDC height of windows with CS_OWNDC style if 
 | 
|---|
| 2039 |                   window is resized.
 | 
|---|
| 2040 |                   (fixes 28 pixel shift up in MS Word MDI window; Word calls 
 | 
|---|
| 2041 |                    GetDCEx once and does custom WM_PAINT handling (never calls 
 | 
|---|
| 2042 |                    Begin/EndPaint))
 | 
|---|
| 2043 |     - KERNEL32: o HeapReAlloc: return old pointer if new size is smaller or
 | 
|---|
| 2044 |                                equal to old size.
 | 
|---|
| 2045 |     - GDI32:    o Limit length of converted strings in InternalDrawTextExW,
 | 
|---|
| 2046 |                   InternalGetTabbedTextExtentW, InternalTabbedTextOutW &
 | 
|---|
| 2047 |                   InternalTextOutW. (cbCount might be smaller than string 
 | 
|---|
| 2048 |                   length)
 | 
|---|
| 2049 |                   (fixes crash in MS Word when it tries to display the about
 | 
|---|
| 2050 |                    dialog)
 | 
|---|
| 2051 |     - INCLUDE\win\unicode: 
 | 
|---|
| 2052 |                 o strcpyW bugfix (didn't terminate string -> heap corruption)
 | 
|---|
| 2053 |     - DSOUND:   o Preliminary code added for DirectAudio interface. 
 | 
|---|
| 2054 |                   (not finished & not activated)
 | 
|---|
| 2055 | 
 | 
|---|
| 2056 |  2001-04-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2057 |     - KERNEL32: o Implemented FreeLibraryAndExitThread
 | 
|---|
| 2058 |                 o Create HandleManager class for mailslots + partial implementation
 | 
|---|
| 2059 |                   for mailslot APIs (using named pipes)
 | 
|---|
| 2060 |                 o Fixed wrong return values for some CloseHandle methods
 | 
|---|
| 2061 |                 o Fixed CreateNamedPipe; must not call DosCreateNPipe for existing pipe
 | 
|---|
| 2062 |                   (at least according to the SDK docs; must verify this in NT!)
 | 
|---|
| 2063 |                 o Implemented CreateFile and CloseHandle for named pipe class
 | 
|---|
| 2064 |                 o Implemented SetNamedPipeHandleState
 | 
|---|
| 2065 |                 o GetEnvironmentVariableW fix (breakpoint hit in debug build)
 | 
|---|
| 2066 |     - ADVAPI32: o IsTextUnicode forwarded to RtlIsTextUnicode (ntdll)
 | 
|---|
| 2067 |     - GDI32:    o InternalTextOutW fix (breakpoint hit in debug build)
 | 
|---|
| 2068 |     - OLE32:    o Resync with latest Wine build (20010418)
 | 
|---|
| 2069 | 
 | 
|---|
| 2070 |  2001-04-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2071 |     - USER32:   o Check visibility of parents in IsWindowVisible
 | 
|---|
| 2072 |                 o Call ShowWindow(SW_MINIMIZE) in CloseWindow (for non-child windows)
 | 
|---|
| 2073 |                   Don't use PM directly to minimize it.
 | 
|---|
| 2074 | 
 | 
|---|
| 2075 |  2001-04-25: Shingo Tsuda <sofiya@din.or.jp>
 | 
|---|
| 2076 |     - GDI32:    o DBCS fix for looking up font name in font rename profile section
 | 
|---|
| 2077 | 
 | 
|---|
| 2078 |  2001-04-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2079 |     - COMDLG32, DPLAYX, OLE32, OLEAUT32:
 | 
|---|
| 2080 |                 o Compile fixes for VAC 3.6.5 (nameless unions & structs)
 | 
|---|
| 2081 |     - COMDLG32: o Resync with latest Wine code
 | 
|---|
| 2082 |                   (directory changed after file chosen in file open dialog)
 | 
|---|
| 2083 | 
 | 
|---|
| 2084 |  2001-04-23: Dietrich Teickner <Dietrich_Teickner@t-online.de>
 | 
|---|
| 2085 |     - SHELL32:  o Updates and fixes for SHFileOperationA (FO_COPY)
 | 
|---|
| 2086 | 
 | 
|---|
| 2087 |  2001-04-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2088 |     - DDRAW:    o Wrong calling convention of io_init2. Parameter is pushed
 | 
|---|
| 2089 |                   on the stack, not put in eax.
 | 
|---|
| 2090 |                   (fixes crash in release ddraw & systems with xf86sup.sys 
 | 
|---|
| 2091 |                    installed)
 | 
|---|
| 2092 |     - KERNEL32: o Removed wrong segment definitions introduced by yesterday's
 | 
|---|
| 2093 |                   EXC_CallHandler rewrite.
 | 
|---|
| 2094 |                   (fixes global data section)
 | 
|---|
| 2095 |                 o Build fake header for LX executable
 | 
|---|
| 2096 |                   (fixes crash during Acrobat Reader 5 install (regsvr32.exe))
 | 
|---|
| 2097 |     - NTDLL:    o Updated rtlstr.c (Wine)
 | 
|---|
| 2098 |                 o Wrote partial implementation of RtlGetAce. Not tested well.
 | 
|---|
| 2099 |                   Enough to prevent Acrobat Reader 5 install from crashing.
 | 
|---|
| 2100 |     - ADVAPI32: o Forward AddAce, FindFirstFreeAce, GetAce & AddAccessAllowedAce
 | 
|---|
| 2101 |                   to NTDLL
 | 
|---|
| 2102 |     - INSTALL:  o Add Font registry keys 
 | 
|---|
| 2103 |                   [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
 | 
|---|
| 2104 |                   [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Fonts]
 | 
|---|
| 2105 |                   "Courier 10,12,15 (VGA res)"="COURE.FON"
 | 
|---|
| 2106 |                   "MS Sans Serif 8,10,12,14,18,24 (VGA res)"="SSERIFE.FON"
 | 
|---|
| 2107 |                   "MS Serif 8,10,12,14,18,24 (VGA res)"="SERIFE.FON"
 | 
|---|
| 2108 | 
 | 
|---|
| 2109 |  2001-04-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2110 |     - KERNEL32: o DosWrite for stdout doesn't accept high addresses
 | 
|---|
| 2111 |                 o Rewrote EXC_CallHandler in assembly (copied compiler output
 | 
|---|
| 2112 |                   (opt. off))
 | 
|---|
| 2113 |                   No longer necessary to turn off optimizations for exceptions.cpp.
 | 
|---|
| 2114 |                 o Added partial implementation of GetLongPathNameA/W
 | 
|---|
| 2115 | 
 | 
|---|
| 2116 |  2001-04-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2117 |     - USER32:   o Commented out RestoreCursor call in user32 exitlist handler.
 | 
|---|
| 2118 |                   Seems to cause PM hangs on some (a lot?) machines for
 | 
|---|
| 2119 |                   reasons unknown.
 | 
|---|
| 2120 | 
 | 
|---|
| 2121 |  2001-04-20: Patrick Haller <patrick.haller@innotek.de>
 | 
|---|
| 2122 |     - DSOUND:   o Fixes / Workaround for PowerDVD 3.0
 | 
|---|
| 2123 |                   Crashed when allocating sound object for
 | 
|---|
| 2124 |                   48kHz, 16-Bit, 4 channels
 | 
|---|
| 2125 |                 o dynamically size the internal mixing buffer 
 | 
|---|
| 2126 |                   in DSMIXER
 | 
|---|
| 2127 | 
 | 
|---|
| 2128 |  2001-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2129 |     - KERNEL32: o Fail properly when a dll can't be found or loaded.
 | 
|---|
| 2130 |     - SHELL32:  o Ported latest shlfileop.c from Wine. (include functional
 | 
|---|
| 2131 |                   SHFileOperation). 
 | 
|---|
| 2132 |                   TODO: Merge the rest.
 | 
|---|
| 2133 | 
 | 
|---|
| 2134 |  2001-04-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2135 |     - dailybuild:
 | 
|---|
| 2136 |                 o Adjusted to new build pattern.
 | 
|---|
| 2137 |                 o Copy all builds to local archive directory.
 | 
|---|
| 2138 |     - tools\install:
 | 
|---|
| 2139 |                 o Added Xx2Lx.
 | 
|---|
| 2140 |     - Readme.txt:
 | 
|---|
| 2141 |                 o Changed Pe2Lx to Xx2Lx.
 | 
|---|
| 2142 | 
 | 
|---|
| 2143 |  2001-04-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2144 |     - Unicode:  o Minor addjustments to makefile. CFLAGS is the correct
 | 
|---|
| 2145 |                   place to addjust flags for C compilation. And flags
 | 
|---|
| 2146 |                   are compiler specific.. wrapped it in CCENV checks.
 | 
|---|
| 2147 |     - Tools\Common:
 | 
|---|
| 2148 |                 o Revamped a couple of things - introduced interface classes.
 | 
|---|
| 2149 |                   Not quite statisfied yet, but it's working.
 | 
|---|
| 2150 |                 o Starting to make an kFileSDF class to access .SDF files
 | 
|---|
| 2151 |                   SDF = Structure Definition Files - used by PMDF. Contains
 | 
|---|
| 2152 |                   information about structures (struct _somthing_s).
 | 
|---|
| 2153 |                   Needs this information for win32k.
 | 
|---|
| 2154 |     - Tools\Database:
 | 
|---|
| 2155 |                 o Recreate makefiles, new style. GD is not compiled any longer.
 | 
|---|
| 2156 |                 o Addjusted APIImport to fit changes in Tools\Common.
 | 
|---|
| 2157 |     - Tools\ImpLib:
 | 
|---|
| 2158 |                 o Addjusted code to fit changes in Tools\Common.
 | 
|---|
| 2159 | 
 | 
|---|
| 2160 |  2001-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2161 |     - KERNEL32: o Fix for LoadLibrary(Ex)W. (free must not be called for
 | 
|---|
| 2162 |                   converted strings; use FreeAsciiString instead)
 | 
|---|
| 2163 |     - TOOLS\WRC:o Ported latest wrc. (has proper ascii -> unicode conversion
 | 
|---|
| 2164 |                   and more features)
 | 
|---|
| 2165 |                 o Open files in binary mode only; fixes load failures for
 | 
|---|
| 2166 |                   shell32 icons (newlines were translated; bytes removed from
 | 
|---|
| 2167 |                   icon data)
 | 
|---|
| 2168 |     - DPLAYX:   o Compile fixes for header changes.
 | 
|---|
| 2169 |     - include\odin.h:
 | 
|---|
| 2170 |                 o Changes for wrc. It chokes on calling conventions.
 | 
|---|
| 2171 |                 o Got rid of annoying 'unused struct' warnings
 | 
|---|
| 2172 | 
 | 
|---|
| 2173 |  2001-04-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2174 |     - DSOUND:   o Removed pmwinx.lib from makefile. Wasn't used; and it had
 | 
|---|
| 2175 |                   bad path (ie. no path).
 | 
|---|
| 2176 | 
 | 
|---|
| 2177 |  2001-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2178 |     - KERNEL32: o RegQueryValueExA/W broken. Reserved & type parameters reversed.
 | 
|---|
| 2179 |                   (fixes crash in Notepad and possibly solves many other problems)
 | 
|---|
| 2180 |     - USER32:   o SetCapture change; return immediately when new capture window
 | 
|---|
| 2181 |                   is the same as old one.
 | 
|---|
| 2182 |                   (fixes high cpu load in PowerDVD when holding mouse cursor over
 | 
|---|
| 2183 |                    control window; PM kept sending WM_MOUSEMOVE messages)
 | 
|---|
| 2184 |                 o Rewrote ClipCursor & GetClipCursor
 | 
|---|
| 2185 |                 o Set PM style flags when WS_CLIPCHILDREN or WS_CLIPSIBLINGS
 | 
|---|
| 2186 |                   flag is changed by the application using SetWindowLong.
 | 
|---|
| 2187 |                   (fixes Lotus Notes size bar & upper left rectangle painting)
 | 
|---|
| 2188 | 
 | 
|---|
| 2189 |  2001-04-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2190 |     - configure,win32k:
 | 
|---|
| 2191 |                 o Added option to Configure.cmd, -w, which omittes building
 | 
|---|
| 2192 |                   of Win32k.sys.
 | 
|---|
| 2193 | 
 | 
|---|
| 2194 |  2001-04-12: Shingo Tsuda <sofiya@din.or.jp>
 | 
|---|
| 2195 |     - USER32:   o Fixes for DBCS strings
 | 
|---|
| 2196 | 
 | 
|---|
| 2197 |  2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2198 |     - PELDR:    o Print module name that contributed to the failure of
 | 
|---|
| 2199 |                   loading kernel32.
 | 
|---|
| 2200 | 
 | 
|---|
| 2201 |  2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2202 |     - WINMM:    o Clean up DirectAudio thread properly.
 | 
|---|
| 2203 | 
 | 
|---|
| 2204 |  2001-04-05: Shingo Tsuda <sofiya@din.or.jp>
 | 
|---|
| 2205 |     - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
 | 
|---|
| 2206 |                   - srclen <= -1 -> calculate length (docs say only for -1)
 | 
|---|
| 2207 |                   - source and destination pointer can't be the same (as docs also claim)
 | 
|---|
| 2208 |                   (verified in Windows ME & Windows NT4, SP6)
 | 
|---|
| 2209 | 
 | 
|---|
| 2210 |  2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2211 |     - USER32:   o Rewrote ShowCursor
 | 
|---|
| 2212 | 
 | 
|---|
| 2213 |  2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2214 |     - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
 | 
|---|
| 2215 |                 o lstrcpynWtoA & lstrcpynAtoW fixes
 | 
|---|
| 2216 |                 o Removed WideCharToLocal & LocalToWideChar
 | 
|---|
| 2217 |     - INCLUDE\unicode.h:
 | 
|---|
| 2218 |                 o AsciiToUnicode* & UnicodeToAscii* functions implemented
 | 
|---|
| 2219 |                   with functions in heapstring.h
 | 
|---|
| 2220 |     - *         o Compile fixes due to header changes
 | 
|---|
| 2221 | 
 | 
|---|
| 2222 |  2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2223 |     - DDRAW:    o Only reset physical palette in DirectDraw destructor if
 | 
|---|
| 2224 |                   palette was really changed.
 | 
|---|
| 2225 |                   (gets rid of excessive screen redraws in DXView)
 | 
|---|
| 2226 |     - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
 | 
|---|
| 2227 |                 o Return GetUserDefaultLangID in GetSystemDefaultLangID
 | 
|---|
| 2228 |                 o Ported Wine's codepage, string & unicode functions (codepage.cpp)
 | 
|---|
| 2229 |                 o Ported Wine's codepage unicode conversion functions & tables
 | 
|---|
| 2230 |                   (kernel32\unicode)
 | 
|---|
| 2231 |                 o Rewrote string functions (heapstring.cpp) to use new unicode
 | 
|---|
| 2232 |                   functions.
 | 
|---|
| 2233 |     - USER32:   o Ported Wine's Char* functions
 | 
|---|
| 2234 |                   TODO: IsCharAlphaA & IsCharAlphaNumericA
 | 
|---|
| 2235 | 
 | 
|---|
| 2236 |  2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2237 |     - USER32:   o Mouse message translation fix (check capture)
 | 
|---|
| 2238 |                 o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
 | 
|---|
| 2239 |                   (fixes file dialogs with OFN_ENABLETEMPLATE style)
 | 
|---|
| 2240 |                   Verified behaviour in NT4, SP6 with DSShow sample
 | 
|---|
| 2241 |                   - about dialog with DS_CONTROL -> no titlebar
 | 
|---|
| 2242 |                   - file open dialog without DS_CONTROL -> titlebar + moveable
 | 
|---|
| 2243 |                     2nd dialog
 | 
|---|
| 2244 |                 o Temporary workaround for file dialogs with template dialog child.
 | 
|---|
| 2245 |                   They don't redraw when switching directories. For some reason
 | 
|---|
| 2246 |                   the new child's (syslistview32) update rectangle stays empty
 | 
|---|
| 2247 |                   after its parent is made visible with ShowWindow
 | 
|---|
| 2248 |                   TODO: find real cause
 | 
|---|
| 2249 |     - MSACM32:  o Ported latest Wine version
 | 
|---|
| 2250 |     - WINMM:    o Ported latest Wine driver.c (necessary for msacm32 update)
 | 
|---|
| 2251 |     - DDRAW:    o Back buffer fix; setup surface descriptor structure and
 | 
|---|
| 2252 |                   don't clear DDSCAPS_BACKBUFFER flag
 | 
|---|
| 2253 |                   (fix for WinDVD)
 | 
|---|
| 2254 |                 o SurfLock:  hEvent can be 0 as long as the DDLOCK_EVENT flag
 | 
|---|
| 2255 |                   isn't set.
 | 
|---|
| 2256 |                   Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
 | 
|---|
| 2257 |                   (fix for WinDVD)
 | 
|---|
| 2258 |     - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
 | 
|---|
| 2259 |                   correct version of the pe loader (PE/PEC)
 | 
|---|
| 2260 | 
 | 
|---|
| 2261 |  2001-04-02: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2262 |     - KERNEL32: o Fix for importing from executable
 | 
|---|
| 2263 |                   (fixes Blade Runner)
 | 
|---|
| 2264 |     - TESTAPP\EXCEPTIONS:
 | 
|---|
| 2265 |                 o Small test apps to test exception handling
 | 
|---|
| 2266 | 
 | 
|---|
| 2267 |  2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2268 |     - WININET:  o Added missing exports to wininet.def
 | 
|---|
| 2269 |     - KERNEL32: o Removed yesterday's codepage change.
 | 
|---|
| 2270 |                   (breaks Opera)
 | 
|---|
| 2271 |     - WINMM:    o Increased nr of DART buffers used for wave playback
 | 
|---|
| 2272 |     - ODININST  o Moved kernel32 init code into odininst
 | 
|---|
| 2273 |                 o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
 | 
|---|
| 2274 |                   registry key with international settings
 | 
|---|
| 2275 |     - USER32:   o Create dialog controls with CreateWindowExW
 | 
|---|
| 2276 |                 o Use correct SendMessage(A/W) call during CreateWindow
 | 
|---|
| 2277 | 
 | 
|---|
| 2278 |  2001-03-31: Sander van Leeuwen <sandervl@xs4all.nl>   
 | 
|---|
| 2279 |     - KERNEL32: o Fix for loading executable with sections not starting on
 | 
|---|
| 2280 |                   page boundary (LOAD_LIBRARY_AS_DATAFILE).
 | 
|---|
| 2281 |                   (fixes crash during install of latest RealPlayer 8)
 | 
|---|
| 2282 |                 o Change default code page back from 1252 to 0. 
 | 
|---|
| 2283 |                   (fixes umlauts in StarOffice 5.2)
 | 
|---|
| 2284 |                   TODO: Need to find out how SO determines the codepage
 | 
|---|
| 2285 |     - USER32:   o WindowFromPoint now works with overlapping siblings too
 | 
|---|
| 2286 |                 o Bugfix in mouse message translation
 | 
|---|
| 2287 |     - COMCTL32: o Resynced with Wine (pager, datetime, flatsb, comboboxex, monthcal)
 | 
|---|
| 2288 |                 o Fixed previous merge (INFOPTR structures too small)
 | 
|---|
| 2289 |                 o Corrected ordinals of a lot of exports
 | 
|---|
| 2290 |                 o Fixed bug in animate control merge; now it works again
 | 
|---|
| 2291 | 
 | 
|---|
| 2292 |  2001-03-30: Sander van Leeuwen <sandervl@xs4all.nl>   
 | 
|---|
| 2293 |     - USER32:   o Rewrote WM_NCHITTEST handling. No longer relies on PM.
 | 
|---|
| 2294 |                 o Put static control hittest workaround inside #ifndef ODIN_HITTEST 
 | 
|---|
| 2295 |                   statement (see 2001-03-25)
 | 
|---|
| 2296 |                 o Send WM_NCHITTEST messages from WindowFromPoint + added
 | 
|---|
| 2297 |                   checks (more like Wine now)
 | 
|---|
| 2298 |                   TODO: New version isn't 100% correct. Doesn't take overlapping
 | 
|---|
| 2299 |                         windows into account when window is transparent. Always 
 | 
|---|
| 2300 |                         continues with parent window.
 | 
|---|
| 2301 |                 o Make copy of class icon in RegisterClassA/W (for hIconSm)
 | 
|---|
| 2302 |                   (done by Wine)
 | 
|---|
| 2303 |                 o Changed COLOR_APPWORKSPACE system color. Lotus Notes main window
 | 
|---|
| 2304 |                   background now correct.
 | 
|---|
| 2305 |                   (TODO: many differences with Wine's system color table; why?)
 | 
|---|
| 2306 | 
 | 
|---|
| 2307 |  2001-03-29: Sander van Leeuwen <sandervl@xs4all.nl>   
 | 
|---|
| 2308 |     - KERNEL32: o CreateFile (disk): disable error popus. NT allows an app to 
 | 
|---|
| 2309 |                   open a cdrom/dvd drive without a disk inside.
 | 
|---|
| 2310 |                   OS/2 fails in that case with error ERROR_NOT_READY
 | 
|---|
| 2311 |                   Ignore that error and return success.
 | 
|---|
| 2312 |                   (removes annoying popups when starting windvd without DVD
 | 
|---|
| 2313 |                    disk in drive)
 | 
|---|
| 2314 |     - GDI32:    o Get correct height & width of HDC in DIB section blitting
 | 
|---|
| 2315 |                   (fixes wrong (button) controls in WinDVD's control panel window)
 | 
|---|
| 2316 | 
 | 
|---|
| 2317 |  2001-03-28: Sander van Leeuwen <sandervl@xs4all.nl>   
 | 
|---|
| 2318 |     - KERNEL32: o GetSystemPowerStatus fix; SYSTEM_POWER_STATUS structure
 | 
|---|
| 2319 |                   definition was wrong.
 | 
|---|
| 2320 |                   (fixes crash in WinDVD)
 | 
|---|
| 2321 |                 o Added translation for ERROR_NOT_READY to error2WinError
 | 
|---|
| 2322 |     - DDRAW:    o Return proper error code for unsupported FOURCC surface 
 | 
|---|
| 2323 |                   creation
 | 
|---|
| 2324 | 
 | 
|---|
| 2325 |  2001-03-27: Sander van Leeuwen <sandervl@xs4all.nl>   
 | 
|---|
| 2326 |     - USER32:   o Rewrote cursor handling. No longer use Open32, but convert
 | 
|---|
| 2327 |                   cursor to OS/2 format during creation.
 | 
|---|
| 2328 |                   (also fixes crash during WinDVD startup)
 | 
|---|
| 2329 |                 o Ported Wine's cursor/icon cache code. Odin no longer
 | 
|---|
| 2330 |                   leaks memory when apps reload icons/cursors.
 | 
|---|
| 2331 |                 o Check for DIB section selection in ReleaseDC and unselect it.
 | 
|---|
| 2332 |                   (only for non-CS_OWNDC hdcs)
 | 
|---|
| 2333 |     - KERNEL32: o Removed cursor & cursor group conversion code
 | 
|---|
| 2334 |     - GDI32:    o SelectObject fixes for DIB sections
 | 
|---|
| 2335 |                 o Check for DIB section selection in DeleteDC and unselect it.
 | 
|---|
| 2336 |                   (fixes crash in WinDVD)
 | 
|---|
| 2337 | 
 | 
|---|
| 2338 |  2001-03-27: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2339 |     - OPENGL:   o Less stict parameter checking in wglSetPixelFormat
 | 
|---|
| 2340 |                   (fixes the game Hitman)
 | 
|---|
| 2341 | 
 | 
|---|
| 2342 |  2001-03-25: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2343 |     - KERNEL32: o Turn off all optimizations for exceptions.cpp in release build (!)
 | 
|---|
| 2344 |     - DINPUT/USER32:
 | 
|---|
| 2345 |                 o Fixed keyboard handling. Now arrow keys should work right
 | 
|---|
| 2346 |                   on both numpad and the separate arrow block among other things.
 | 
|---|
| 2347 | 
 | 
|---|
| 2348 |  2001-03-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2349 |     - USER32:   o If a static window has children, then we can't return HTTRANSPARENT
 | 
|---|
| 2350 |                   for WM_NCHITTEST. For some reason PM then sends all mouse messages 
 | 
|---|
| 2351 |                   to the parent of the static window; even if they are intended 
 | 
|---|
| 2352 |                   for the children of the static window.
 | 
|---|
| 2353 |                   TODO: This could break some win32 apps (parent not receiving mouse
 | 
|---|
| 2354 |                         message for static window (non-child) area)
 | 
|---|
| 2355 |                         Rewrite NCHITTEST handling. (don't use PM)
 | 
|---|
| 2356 |                   (fixes Roger Wilco config window input)
 | 
|---|
| 2357 |                 o Call GlobalAddAtomA/W in RegisterWindowMessageA/W
 | 
|---|
| 2358 |                   (don't use Open32)
 | 
|---|
| 2359 |     - KERNEL32: o OSLibStripPath bugfix (wrong comparison if path contains
 | 
|---|
| 2360 |                   both back- and forward slashes)
 | 
|---|
| 2361 | 
 | 
|---|
| 2362 |  2001-03-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2363 |     - WINMM:    o mmsystemGetVersion returned wrong version. Should be 0x030A.
 | 
|---|
| 2364 |                   (returned in NT4, SP6)
 | 
|---|
| 2365 |                 o Ported Wine's PlaySoundA/W, sndPlaySoundA/W
 | 
|---|
| 2366 |                 o Enabled DirectAudio interface code for wave playback
 | 
|---|
| 2367 |                   (available in upcoming SB Live driver version 0.70)
 | 
|---|
| 2368 |                   (works well with WinAmp 2.72)
 | 
|---|
| 2369 |     - USER32:   o GetAsyncKeyState implemented (calls Open32)
 | 
|---|
| 2370 | 
 | 
|---|
| 2371 |  2001-03-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2372 |     - WINMM:    o Wrong calling convention for timer thread handler (os2timer.cpp)
 | 
|---|
| 2373 |                 o Preliminary code for DirectAudio wave playback (new audio
 | 
|---|
| 2374 |                   interface in the upcoming SB Live driver)
 | 
|---|
| 2375 |                 o Rewrote DART wave playback & recording classes
 | 
|---|
| 2376 |                 o Added support for more callback types (event, thread)
 | 
|---|
| 2377 |                 o Fixed wrong callback parameter (window callback) for waveIn/OutReset
 | 
|---|
| 2378 |                   Note: Untested code. Will be tested & fixed tomorrow.
 | 
|---|
| 2379 | 
 | 
|---|
| 2380 |  2001-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2381 |     - KERNEL32: o Ported Wine's GetBinaryTypeA/W
 | 
|---|
| 2382 |                 o Wrote assembly wrapper for thread handler calling to cope with
 | 
|---|
| 2383 |                   buggy applications that use the wrong calling convention for
 | 
|---|
| 2384 |                   thread handlers. (like @#$@#% PowerDVD)
 | 
|---|
| 2385 |                   (fixes crash in PowerDVD with release build of kernel32)
 | 
|---|
| 2386 | 
 | 
|---|
| 2387 |  2001-03-22: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2388 |     - USER32:   o Show the mouse pointer in the exitlist handler of user32.
 | 
|---|
| 2389 |                   (should restore the mouse pointer after a game crashes)
 | 
|---|
| 2390 | 
 | 
|---|
| 2391 |  2001-03-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2392 |     - KERNEL32: o Added support for disabling logging for a specific thread
 | 
|---|
| 2393 |     - WINMM:    o Pause playback after underrun & restart it properly when
 | 
|---|
| 2394 |                   new buffers arrive.
 | 
|---|
| 2395 | 
 | 
|---|
| 2396 |  2001-03-20: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2397 |     - include/DDRAW:
 | 
|---|
| 2398 |                 o Cleaned up so that it builds with Watcom. Still lots
 | 
|---|
| 2399 |                   of warnings and Watcom build doesn't seem to work right now.
 | 
|---|
| 2400 | 
 | 
|---|
| 2401 |  2001-03-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2402 |     - Odin32Api:
 | 
|---|
| 2403 |                 o Added sample makefile (from the Generic SDK sample)
 | 
|---|
| 2404 |                    (Just remeber to rename the generic.rc to resource.orc.)
 | 
|---|
| 2405 | 
 | 
|---|
| 2406 |  2001-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2407 |     - DPLAYX:   o Fix for nameless unions & VAC 3.6.5 (makefile)
 | 
|---|
| 2408 | 
 | 
|---|
| 2409 |  2001-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2410 |     - KERNEL32: o Fail properly when dll can't be found (pe loader)
 | 
|---|
| 2411 |     - WINMM:    o Do not pause wave stream after underrun. Stop it instead.
 | 
|---|
| 2412 |                   (writing audio buffers to a paused stream crashes MMPM2)
 | 
|---|
| 2413 |                   (fixes crash while playing movie in PowerDVD)
 | 
|---|
| 2414 |                 o Added level 2 logging support.
 | 
|---|
| 2415 |                 o Recording callback bugfix
 | 
|---|
| 2416 |                 o Several playback changes & fixes
 | 
|---|
| 2417 |                 o Do not use TIB selector of thread that issues waveOut/InOpen.
 | 
|---|
| 2418 |                   Instead query selector of main thread in DART callback thread.
 | 
|---|
| 2419 |                   (fixes crash in WinAmp when pressing stop; thread that opened
 | 
|---|
| 2420 |                    the playback stream is terminated before the stream is stopped)
 | 
|---|
| 2421 |     - GDI32:    o Check y inversion when resyncing dib section
 | 
|---|
| 2422 | 
 | 
|---|
| 2423 | 
 | 
|---|
| 2424 |  2001-03-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2425 |     - Pe2Lx:    o Convert CUI subsystem to VIO apps. CUI applications will
 | 
|---|
| 2426 |                   now work as executed thru pec.exe.
 | 
|---|
| 2427 |     - Kernel32: o Init VIO Console for Pe2Lx CUI images.
 | 
|---|
| 2428 | 
 | 
|---|
| 2429 |                   [DirectDraw]
 | 
|---|
| 2430 |                   Fullscreen=[True|False|0|1]
 | 
|---|
| 2431 | 
 | 
|---|
| 2432 |                   Don't blame me if your machine goes up in smoke after you've
 | 
|---|
| 2433 |                   turned fullscreen on ;-)
 | 
|---|
| 2434 |                   Note: It seems that fullscreen currently doesn't work right
 | 
|---|
| 2435 |                   with newer SDD releases for 8bpp apps, though 16/24/32bpp
 | 
|---|
| 2436 |                   should be OK (palette setting problems)
 | 
|---|
| 2437 | 
 | 
|---|
| 2438 |  2001-03-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2439 |     - tools/dailbuild:
 | 
|---|
| 2440 |                 o Added jade and DocBook to the environment.
 | 
|---|
| 2441 |     - include/win32k.h:
 | 
|---|
| 2442 |                 o Defines OBJ_ANY on demand. (For use with DosAllocMemEx().)
 | 
|---|
| 2443 |     - tools/fastdep:
 | 
|---|
| 2444 |                 o Ported to NT by faking the necessary OS/2 APIs.
 | 
|---|
| 2445 |                   Tested with Watcom C/C++ v11.0.
 | 
|---|
| 2446 |                   Makefile target: fastdepnt.exe
 | 
|---|
| 2447 | 
 | 
|---|
| 2448 |  2001-03-14: Markus Montkowski <mmontkowski@gmx.de>
 | 
|---|
| 2449 |     - DPLAYX:   o Sync with latest WINE stuff
 | 
|---|
| 2450 |     - include\win\dplay.h   o Syncd with WINE
 | 
|---|
| 2451 |     - include\win\dplobby.h o Syncd with WINE
 | 
|---|
| 2452 | 
 | 
|---|
| 2453 |  2001-03-14: Bart van Leeuwen <Bart_van_Leeuwen@netage.nl>
 | 
|---|
| 2454 |     - USER32:   o Wrong setting of fErase in PAINTSTRUCT (BeginPaint)
 | 
|---|
| 2455 |                   (fixes background in CDRLabel)
 | 
|---|
| 2456 | 
 | 
|---|
| 2457 |  2001-03-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2458 |     - KERNEL32: o Removed include <builtin.h> from several files. (no longer necessary)
 | 
|---|
| 2459 |     - KERNEL32/USER32/GDI32/Dllentry/SHELL32/WINMM/WSOCK32
 | 
|---|
| 2460 |                 o Dll entrypoint changes for Watcom
 | 
|---|
| 2461 |     - USER32:   o Set last error to ERROR_INVALID_WINDOW_HANDLE if application
 | 
|---|
| 2462 |                   passes invalid window handle to BeginPaint.
 | 
|---|
| 2463 |                   (verified in NT4, SP6)
 | 
|---|
| 2464 | 
 | 
|---|
| 2465 |  2001-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2466 |     - KERNEL32: o Fix for SearchPathA with NULL parameter for output buffer
 | 
|---|
| 2467 |                   (reported by Ahti Heinla)
 | 
|---|
| 2468 |     - USER32:   o Fail if BeginPaint is called with NULL PAINTSTRUCT pointer
 | 
|---|
| 2469 |                   (verified in NT4, SP6)
 | 
|---|
| 2470 |     - DDRAW/DSOUND:
 | 
|---|
| 2471 |                 o Removed #ifdef IBMCPP statements (moved into initdll.h).
 | 
|---|
| 2472 | 
 | 
|---|
| 2473 |  2001-03-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2474 |     - Win32k, Pe2Lx, Elf2Lx, Xx2Lx:
 | 
|---|
| 2475 |                 o Made generic Xx2Lx util for both Pe2Lx and Elf2Lx
 | 
|---|
| 2476 |                   (and any future loaders).
 | 
|---|
| 2477 |                   Pe2Lx.exe is now named Xx2Lx.exe!
 | 
|---|
| 2478 |                 o Makefile fixes.
 | 
|---|
| 2479 |                 o Elf2Lx compiles (non-working dummy).
 | 
|---|
| 2480 |                 o Fixed vprint and vprintf16 to not skip multiple LF/CRs.
 | 
|---|
| 2481 | 
 | 
|---|
| 2482 |     - Configure.cmd:
 | 
|---|
| 2483 |                 o Changed to configure Win32k as well. Re-run Configure.cmd!!!
 | 
|---|
| 2484 | 
 | 
|---|
| 2485 | 
 | 
|---|
| 2486 |  2001-03-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2487 |     - Win32k:   o Fixed trap in k32QuerySystemMemInfo when
 | 
|---|
| 2488 |                   VIRTUALADDRESSLIMIT=512.
 | 
|---|
| 2489 | 
 | 
|---|
| 2490 |  2000-03-06: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2491 |     - include   o More changes and fixes for Watcom
 | 
|---|
| 2492 | 
 | 
|---|
| 2493 |  2001-03-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2494 |     - Win32k:   o Fixed some 16-bit compiler problems.
 | 
|---|
| 2495 |                 o Fixed 4.51 toolkit problems.
 | 
|---|
| 2496 | 
 | 
|---|
| 2497 |  2001-02-29: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2498 |     - KERNEL32: o First check executable name during internal dll loading
 | 
|---|
| 2499 |                   then try loading it as a dll.
 | 
|---|
| 2500 |                 o Reroute ReadFile for standard handle class to Open32.
 | 
|---|
| 2501 | 
 | 
|---|
| 2502 |  2001-02-28: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2503 |     - KERNEL32: o Added support for high memory override key in odin.ini:
 | 
|---|
| 2504 |                   [ODINSYSTEM]
 | 
|---|
| 2505 |                   HIGHMEM=0
 | 
|---|
| 2506 |                   Turns off high memory usage in Odin. Useful for Warp 4 (>fp12)
 | 
|---|
| 2507 |                   systems that still use the old 16 bits TCPIP stack.
 | 
|---|
| 2508 |                   (temporary workaround)
 | 
|---|
| 2509 |                   NOTE: Turning this option off will prevent Odin from running
 | 
|---|
| 2510 |                         applications that must be loaded in high memory
 | 
|---|
| 2511 |                         (like MS Word).
 | 
|---|
| 2512 |     - NTDLL:    o Committed update from Jan. 25th:
 | 
|---|
| 2513 |                   Ported latest NtQuerySystemInformation from Wine
 | 
|---|
| 2514 |                   (includes fix for IE5 install)
 | 
|---|
| 2515 |     - include\odinwrap.h:
 | 
|---|
| 2516 |                 o Wrappers only detect FS problems when they should correct them.
 | 
|---|
| 2517 |                   (fixes FS corruption in wsock32 (WSAStartup/WSACleanup))
 | 
|---|
| 2518 | 
 | 
|---|
| 2519 |  2001-02-27: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2520 |     - WINMM:    o Added recording (still untested)
 | 
|---|
| 2521 |                 o waveOutReset bugfix
 | 
|---|
| 2522 |                 o Compile fix (midi.cpp)
 | 
|---|
| 2523 |     - USER32:   o Ported latest wsprintf Wine functions (not much changed; only
 | 
|---|
| 2524 |                   to stay in sync)
 | 
|---|
| 2525 | 
 | 
|---|
| 2526 |  2001-02-26: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2527 |     - WINMM:    o Fixed FS corruption in RTMidi class (wrappers for RTMIDI
 | 
|---|
| 2528 |                   functions)
 | 
|---|
| 2529 | 
 | 
|---|
| 2530 |  2001-02-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2531 |     - KERNEL32: o Check executable too when searching for imported modules
 | 
|---|
| 2532 |                   (directly imported by PE dlls)
 | 
|---|
| 2533 | 
 | 
|---|
| 2534 |  2001-02-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2535 |     - KERNEL32: o Set fExitProcess flag in WinExe destructor to prevent reloading
 | 
|---|
| 2536 |                   dlls after loading of exe failed.
 | 
|---|
| 2537 | 
 | 
|---|
| 2538 |  2001-02-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2539 |     - GDI32:    o Removed old workaround for SetDIBitsToDevice. Incorrect for
 | 
|---|
| 2540 |                   new implementation of this function with StretchDIBits.
 | 
|---|
| 2541 |                   (fixes bitmaps in Minesweeper)
 | 
|---|
| 2542 |     - USER32:   o WM_SETCURSOR change; don't check WS_EX_NOPARENTNOTIFY style
 | 
|---|
| 2543 |                   when sending this message to the parent of a child window.
 | 
|---|
| 2544 |                 o Redraw entire window when switching between minimized, maximized
 | 
|---|
| 2545 |                   and restored windows state.
 | 
|---|
| 2546 |                 o Added missing cursor to MDI client class
 | 
|---|
| 2547 |                   (cursor now changes when moving cursor from mdi child to
 | 
|---|
| 2548 |                    client window)
 | 
|---|
| 2549 |     - USER32, include\win\drive.h:
 | 
|---|
| 2550 |                 o DRIVE_GetDosCwd bugfix
 | 
|---|
| 2551 |                   (fixes crash in Cool Edit old-style file open dialog)
 | 
|---|
| 2552 | 
 | 
|---|
| 2553 |  2000-02-22: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2554 |     - Win32k:   o Support for the 14062e kernels.
 | 
|---|
| 2555 |                 o Removed the CALLTAB segment.
 | 
|---|
| 2556 |                 o Hooked dh_SendEvent and RASRST for taskmanager hot-key support.
 | 
|---|
| 2557 |                 o Enabled callgate on SMP kernel.
 | 
|---|
| 2558 | 
 | 
|---|
| 2559 |  2001-02-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2560 |     - KERNEL32: o Changed error string when detecting version mismatch.
 | 
|---|
| 2561 |     - USER32:   o Fixed incorrect index checking for class and window words.
 | 
|---|
| 2562 |                 o Allow misaligned access to window words/longs
 | 
|---|
| 2563 |                   (fixes crash in Quicken 99)
 | 
|---|
| 2564 |                 o More minimize changes/fixes for MDI windows.
 | 
|---|
| 2565 |                 o Update region fix in NotifyFrameChanged method
 | 
|---|
| 2566 | 
 | 
|---|
| 2567 |  2001-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2568 |     - USER32:   o Changes for minimizing windows. Not done yet.
 | 
|---|
| 2569 |                 o Added CreateFakeWindowEx.
 | 
|---|
| 2570 |                   Turns native OS/2 window into window recognized by Odin (with
 | 
|---|
| 2571 |                   only very limited functionality)
 | 
|---|
| 2572 |                   Useful for creating an Odin window with an OS/2 window as
 | 
|---|
| 2573 |                   parent.
 | 
|---|
| 2574 | 
 | 
|---|
| 2575 |                   Applications don't expect WM_NULL when fetching mouse
 | 
|---|
| 2576 |                   messages from the queue.
 | 
|---|
| 2577 |                   (fixes mouse jumping in Unreal)
 | 
|---|
| 2578 | 
 | 
|---|
| 2579 |  2000-02-20: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2580 |     - Win32k:   o Moved calltabs to the code segments. Clears the
 | 
|---|
| 2581 |                   WriteProtect(WP) flag in CR0 to be able to do this. The flags
 | 
|---|
| 2582 |                   is of course restored when the calltabs are written.
 | 
|---|
| 2583 |                 o Completed callgate code. Though is not activated for SMP
 | 
|---|
| 2584 |                   kernels yet as I haven't tested that yet.
 | 
|---|
| 2585 |                   The callgate works just as any other callgate in OS2, it
 | 
|---|
| 2586 |                   calls kernel routines for entry and exit housekeeping.
 | 
|---|
| 2587 |                 o Updated the win32k library and header to accomodate this.
 | 
|---|
| 2588 |                   All IOCtl structures are changed.
 | 
|---|
| 2589 |                   So, Install the new the new Odin32 and reboot before using
 | 
|---|
| 2590 |                   it so the new win32k.sys is installed.
 | 
|---|
| 2591 | 
 | 
|---|
| 2592 |  2001-02-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2593 |     - USER32:   o Fix for position of system menu in (mdi) child windows
 | 
|---|
| 2594 |                 o Use WinScrollWindow to scroll children again and manually
 | 
|---|
| 2595 |                   notify children that they have moved. (PM only does this
 | 
|---|
| 2596 |                   for windows with CS_MOVENOTIFY class)
 | 
|---|
| 2597 |                   (much smoother scroll in Opera)
 | 
|---|
| 2598 |                 o Use WinGetMaxPosition to determine default maximized position
 | 
|---|
| 2599 |                   of toplevel window before sending WM_GETMINMAXINFO
 | 
|---|
| 2600 |                   (maximized Odin windows no longer obscure WarpCenter)
 | 
|---|
| 2601 |                 o Activation fixes for MDI windows
 | 
|---|
| 2602 | 
 | 
|---|
| 2603 |  2000-02-19: Oliver Braun <Oliver.Braun@hamburg.de>
 | 
|---|
| 2604 |     - KERNEL32: o OSLibDosAllocMem fix (better checks for errors + return
 | 
|---|
| 2605 |                   4kb aligned memory if 64kb alignment fails)
 | 
|---|
| 2606 |                   (fixes StarOffice 5.2 install)
 | 
|---|
| 2607 | 
 | 
|---|
| 2608 |  2000-02-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2609 |     - KERNEL32: o Use DosAllocMemEx to 64KB align memory (OSLibDosAllocMem)
 | 
|---|
| 2610 |                   when available.
 | 
|---|
| 2611 |     - Win32k:   o Prepared API code for both callgate and IOCtl invokation.
 | 
|---|
| 2612 |                   This caused changes in IOCtl parameter structures.
 | 
|---|
| 2613 |                   Callgate code is completed but not used yet because
 | 
|---|
| 2614 |                   it isn't tested yet.
 | 
|---|
| 2615 | 
 | 
|---|
| 2616 |  2001-02-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2617 |     - COMDLG32: o Commented out Norse ChooseFont dialog (incomplete translation)
 | 
|---|
| 2618 |                   Use the English version instead.
 | 
|---|
| 2619 |     - USER32:   o Corrected invalidating nonclient parts of a window after a resize.
 | 
|---|
| 2620 |                   (fixes resizing of mdi windows in mdi sample)
 | 
|---|
| 2621 | 
 | 
|---|
| 2622 |  2000-02-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2623 |     - Win32k:   o Finished implementation of DosAllocMemEx.
 | 
|---|
| 2624 |                   DosAllocMemEx is equal to DosAllocMem but takes some extra
 | 
|---|
| 2625 |                   OBJ_ flags (defined in win32k.h).
 | 
|---|
| 2626 |                   TODO: "Grow arena" problem when allocating memory at a
 | 
|---|
| 2627 |                   specific location. I'll fix this ASAP and add a fix for the
 | 
|---|
| 2628 |                   loader too (which has the same problems with loading EXEs
 | 
|---|
| 2629 |                   without fixup above 64MB).
 | 
|---|
| 2630 | 
 | 
|---|
| 2631 |  2001-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2632 |     - USER32:   o Restore window origin in SetWindowPos for parent window with
 | 
|---|
| 2633 |                   CS_OWNDC style.
 | 
|---|
| 2634 |                   Do the same thing in WM_VRNENABLED message handler.
 | 
|---|
| 2635 |                   (fixes paint offset problems in Opera windows)
 | 
|---|
| 2636 |                 o Bug in yesterday's ScrollWindowEx fix
 | 
|---|
| 2637 |                   (fixes smooth scrolling of child windows in Opera html window)
 | 
|---|
| 2638 |                 o Detect DestroyWindow call during CreateWindowEx and delay
 | 
|---|
| 2639 |                   deleting the window/dialog object.
 | 
|---|
| 2640 |                   (fixes crash in Opera when going to fullscreen mode)
 | 
|---|
| 2641 | 
 | 
|---|
| 2642 |  2000-02-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2643 |     - Win32kCC: o Rewrote to notebook. (fixes size problem)
 | 
|---|
| 2644 |                 o Added memoryinfo page which is refreshed every second.
 | 
|---|
| 2645 | 
 | 
|---|
| 2646 |  2000-02-17: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 2647 |     - INCLUDE:  o Header changes for compiling Opera
 | 
|---|
| 2648 | 
 | 
|---|
| 2649 |  2001-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2650 |     - USER32:   o Store active status in custom window word. QWS_FLAGS appears
 | 
|---|
| 2651 |                   to be modified by PM somewhere.
 | 
|---|
| 2652 |                   (fixes WM_ACTIVATE loop in Opera when maximizing or restoring
 | 
|---|
| 2653 |                    the mdi window)
 | 
|---|
| 2654 |                 o Don't include RDW_NOERASE flag in InvalidateRect/Rgn
 | 
|---|
| 2655 |                   (fixes background erase for mdi client window in Opera)
 | 
|---|
| 2656 |                 o IsChild only checked the direct parent of a window. Must
 | 
|---|
| 2657 |                   check all parents (parents of parents etc)
 | 
|---|
| 2658 |                   (fixes TAB handling in Opera dialogs)
 | 
|---|
| 2659 |                 o Ported latest GetNextDlgTabItem from Wine
 | 
|---|
| 2660 |                   (fixes TAB handling in Opera dialogs)
 | 
|---|
| 2661 |                 o WM_ADJUSTWINDOWPOS bugfix (if app changes size/position)
 | 
|---|
| 2662 |                   OSLibMapWINDOWPOStoSWP can add flags, but we must not let
 | 
|---|
| 2663 |                   it remove flags.
 | 
|---|
| 2664 |                   (fixes resizing of Opera MDI windows)
 | 
|---|
| 2665 |                 o ScrollWindow(Ex) bugfixes
 | 
|---|
| 2666 |                   Must scroll child windows manually
 | 
|---|
| 2667 |                   (fixes scrolling of Opera html MDI windows)
 | 
|---|
| 2668 |                 o Combobox fix from Wine (CBCalcPlacement)
 | 
|---|
| 2669 |                   (fixes combobox controls in Opera html MDI windows)
 | 
|---|
| 2670 |                   (TODO: sync rest with latest Wine control code)
 | 
|---|
| 2671 | 
 | 
|---|
| 2672 |  2001-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2673 |     - COMDLG32: o Ignore OFN_FILEMUSTEXIST flag in GetSaveFileNameA/W
 | 
|---|
| 2674 |                   (NT4 seems to ignore it too and it fixes the save dialog
 | 
|---|
| 2675 |                    in ElstarFormular 2000)
 | 
|---|
| 2676 | 
 | 
|---|
| 2677 |  2001-02-14: knut stange osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2678 |     - Win32k.lib:
 | 
|---|
| 2679 |                 o Corrected build breaker: log.h should not be included.
 | 
|---|
| 2680 |                   log.h was removed from the CINLCUDES two days ago.
 | 
|---|
| 2681 | 
 | 
|---|
| 2682 |  2001-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2683 |     - KERNEL32: o Allocate TLS index of module before loading the dll it needs
 | 
|---|
| 2684 |                   (some apps assume their executable index is always zero)
 | 
|---|
| 2685 |                   (fixes crash in BrMSX)
 | 
|---|
| 2686 |                 o Must use EXC_CallHandler to call RtlUnwind handler
 | 
|---|
| 2687 |                   (fixes crash during RaiseException in BrMSX)
 | 
|---|
| 2688 |     - OPENGL\GLU:
 | 
|---|
| 2689 |                 o Removed initterm.cpp. Use dllentry.obj instead
 | 
|---|
| 2690 |     - INCLUDE\misc.h:
 | 
|---|
| 2691 |                 o Print file and function name before executing an int 3. (DebugInt3)
 | 
|---|
| 2692 |     - *\initterm.cpp:
 | 
|---|
| 2693 |                 o Wrong calling convention for CRT_Init/Term, ctordtorInit/Term
 | 
|---|
| 2694 |                 o VAC 3.6.5 ctordtorInit/Term takes one parameter
 | 
|---|
| 2695 |     - USER32:   o Delay SetFocus when called during processing of WM_SETFOCUS
 | 
|---|
| 2696 |                   message (not allowed by PM).
 | 
|---|
| 2697 |                   (fixes keyboard focus in ElstarFormular 2000)
 | 
|---|
| 2698 | 
 | 
|---|
| 2699 |  2000-02-13: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2700 |     - USER32:   o Wrong unicode<->ascii translation for some listbox & combobox
 | 
|---|
| 2701 |                   messages. Must check if the control style includes LB/CB_HASSTRINGS.
 | 
|---|
| 2702 |                   (CB_FINDSTRING, CB_FINDSTRINGEXACT, CB_SELECTSTRING,
 | 
|---|
| 2703 |                    LB_FINDSTRING, LB_FINDSTRINGEXACT, LB_SELECTSTRING)
 | 
|---|
| 2704 | 
 | 
|---|
| 2705 |  2001-02-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2706 |     - Win32k.lib:
 | 
|---|
| 2707 |                 o Removed /src/win32k/include from the CFLAGS.
 | 
|---|
| 2708 | 
 | 
|---|
| 2709 |  2001-02-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2710 |     - Win32k:   o Added symbols for the 14062D kernels.
 | 
|---|
| 2711 |                 o Added a query API for getting memory information.
 | 
|---|
| 2712 |                 o Added force preload option - should be very useful when
 | 
|---|
| 2713 |                   debugging Ring 3 apps with ICAT. (Option -F)
 | 
|---|
| 2714 | 
 | 
|---|
| 2715 |  2001-02-11: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2716 |     - ODINCRT:  o Completed runtime dll for VAC 3.6.5
 | 
|---|
| 2717 |     - WINMM, GLU, CRTDLL, KERNEL32:
 | 
|---|
| 2718 |                 o Compile fixes for VAC 3.6.5
 | 
|---|
| 2719 |     - RASAPI32: o Can't use LXLITE as it crashes on this binary
 | 
|---|
| 2720 |     - KERNEL32: o Check handle in LocalLock and return NULL if invalid
 | 
|---|
| 2721 |                   (some apps use LocalLock to get access to GDI objects; doesn't
 | 
|---|
| 2722 |                    work in Odin (TODO))
 | 
|---|
| 2723 | 
 | 
|---|
| 2724 |  2001-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2725 |     - USER32:   o Check if window has been destroyed before accessing
 | 
|---|
| 2726 |                   this pointer again in SendInternalMessage.
 | 
|---|
| 2727 |                   (fixes heap corruption in MS Visual C++ 4.2 install)
 | 
|---|
| 2728 |                   TODO: Needs a permanent and correct solution as this
 | 
|---|
| 2729 |                         can happen in several other places.
 | 
|---|
| 2730 |                         Also a potential problem in user32 controls (InfoPtr).
 | 
|---|
| 2731 |                 o Set last error to ERROR_INVALID_INDEX for invalid class word
 | 
|---|
| 2732 |                   index.
 | 
|---|
| 2733 | 
 | 
|---|
| 2734 |  2001-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2735 |     - COMCTL32: o Register controls in LibMain, not in DLL_InitTerm
 | 
|---|
| 2736 |     - KERNEL32: o Re-register dll if DosFreeModule failed with ERROR_INVALID_ACCESS
 | 
|---|
| 2737 |                   Dll refuses to unload if it has an active exitlist handler
 | 
|---|
| 2738 |                   or depends on a dll that registered an exitlist handler.
 | 
|---|
| 2739 |                   In this case the handle remains valid and the entrypoint of
 | 
|---|
| 2740 |                   the dll is NOT called for DLL_PROCESS_DETACH. The next time
 | 
|---|
| 2741 |                   DosLoadModule is called, the entrypoint (and RegisterLXDll)
 | 
|---|
| 2742 |                   isn't called (DLL_PROCESS_ATTACH).
 | 
|---|
| 2743 |                   WORKAROUND: Re-register the dll so future functions that
 | 
|---|
| 2744 |                               use this dll calls don't fail.
 | 
|---|
| 2745 |                   (fixes crash in shell32 in TextPad 4)
 | 
|---|
| 2746 |                 o shared & code heap umalloc changed (now more meaningful debug
 | 
|---|
| 2747 |                   messages in case of heap corruption)
 | 
|---|
| 2748 |     - USER32:   o WM_MINIMIZE/WS_MAXIMIZE support added to CreateWindow
 | 
|---|
| 2749 |                   (fixes size of main InstallShield window for Microsoft Visual
 | 
|---|
| 2750 |                    C++ 4.2)
 | 
|---|
| 2751 |                 o Fixed FS corruption in DIALOG_DlgDirList (c library function calls)
 | 
|---|
| 2752 | 
 | 
|---|
| 2753 |  2001-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2754 |     - KERNEL32: o Standard in/out/error handle fix. Disable change during
 | 
|---|
| 2755 |                   console init.
 | 
|---|
| 2756 |                   (fixes output of console applications; input doesn't work well yet)
 | 
|---|
| 2757 |     - USER32:   o Dialog control fix. Creating them with CreateWindowExW does not
 | 
|---|
| 2758 |                   work since our standard user32 controls are still ASCII.
 | 
|---|
| 2759 |                   (fixes missing icon control in Acrobat Distiller window)
 | 
|---|
| 2760 | 
 | 
|---|
| 2761 |  2001-02-08: Michal Necasek <michalnec@volny.cz>
 | 
|---|
| 2762 |     - KERNEL32: o RtlUnwind bugfix
 | 
|---|
| 2763 | 
 | 
|---|
| 2764 |  2001-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2765 |     - USER32:   o Wrong error set in GetDlgItem. Must be ERROR_CONTROL_ID_NOT_FOUND.
 | 
|---|
| 2766 |                   (verified in NT4, SP6)
 | 
|---|
| 2767 | 
 | 
|---|
| 2768 |  2001-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2769 |     - USER32:   o Get/SetWindowLongA/W, Get/SetWindowWord: must set
 | 
|---|
| 2770 |                   last error to ERROR_INVALID_WINDOW_HANDLE if window not found.
 | 
|---|
| 2771 |                   (verified in NT4, SP6)
 | 
|---|
| 2772 |                   Must also return ERROR_INVALID_INDEX if index is out of range.
 | 
|---|
| 2773 |                   (used to return ERROR_INVALID_PARAMETER) (verified in NT4, SP6)
 | 
|---|
| 2774 |                 o Temporary hack to force focus to newly created window
 | 
|---|
| 2775 |                   (if no Odin window has focus after sending WM_ACTIVATE, set
 | 
|---|
| 2776 |                    focus to window that received the activate message)
 | 
|---|
| 2777 |                   (fixes wrong keyboard focus in RealPlayer 8)
 | 
|---|
| 2778 | 
 | 
|---|
| 2779 |  2001-02-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2780 |     - USER32:   o DrawEdge bugfixes (signed/unsigned char mismatches)
 | 
|---|
| 2781 |                   (fixes lines in properties dialog of RealPlayer 8)
 | 
|---|
| 2782 |                 o Fixed incorrect rounding in dialog control size calculation
 | 
|---|
| 2783 |                   (fixes wrong height of some dialog controls (rp8 pref. dialog lines))
 | 
|---|
| 2784 |                 o Don't unregister class if there are still windows that use it.
 | 
|---|
| 2785 | 
 | 
|---|
| 2786 |  2001-02-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2787 |     - Win32k:   o Added option for the All-In-One-Object fix to be able
 | 
|---|
| 2788 |                   to debug PE executables thru the ICAT. Works with pe2lx
 | 
|---|
| 2789 |                   and win32k.sys.
 | 
|---|
| 2790 |                   -1<+|-|[*]>
 | 
|---|
| 2791 |                     +: Applied when needed.                 (checked)
 | 
|---|
| 2792 |                     -: Never applied (use this to debug).   (not checked)
 | 
|---|
| 2793 |                     *: Allways applied. (default)           (gray)
 | 
|---|
| 2794 |                   It's also added to Win32kCC as a three state checkbutton.
 | 
|---|
| 2795 | 
 | 
|---|
| 2796 |                   WARNING! This option should only be used for debugging
 | 
|---|
| 2797 |                   and will cause your system to crash if used with based
 | 
|---|
| 2798 |                   images!
 | 
|---|
| 2799 |     - tools\Common:
 | 
|---|
| 2800 |                 o Minor changes in the fileformat classes to use kFile.
 | 
|---|
| 2801 | 
 | 
|---|
| 2802 |  2001-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2803 |     - GDI32:    o LineDDA fix (wrong calling convention)
 | 
|---|
| 2804 |                   (fixes crash in Solitaire)
 | 
|---|
| 2805 |     - USER32:   o clientHeight bugfix. Check hwnd instead of pHps->hwnd.
 | 
|---|
| 2806 |                   (pHps can be NULL)
 | 
|---|
| 2807 |                   (fixes crash in Solitaire)
 | 
|---|
| 2808 |     - INSTALL:  o Include ChangeLog-2001 in daily build
 | 
|---|
| 2809 |     - COMDLG32: o Merged some changes from Wine (extra notification in
 | 
|---|
| 2810 |                   FileOpenDlgProc95 & OFN_NOCHANGEDIR support (also added
 | 
|---|
| 2811 |                   to Unicode version of file open dialog))
 | 
|---|
| 2812 |                 o Removed workaround for Acrobat Reader file open dialog
 | 
|---|
| 2813 |                   (Wine update fixed it)
 | 
|---|
| 2814 | 
 | 
|---|
| 2815 |  2000-01-30: Markus Montkowski <mmontkowski@gmx.de>
 | 
|---|
| 2816 |     - KERNEL32: o Fixed handling of fbTimeout in DCBINFO in SetOS2DCB and
 | 
|---|
| 2817 |                   SetCommTimeouts the last one prevented Palms Hotsync to 
 | 
|---|
| 2818 |                   work with normal IBM com.sys.
 | 
|---|
| 2819 |                   SIO did less parameterchecking so it worked...
 | 
|---|
| 2820 | 
 | 
|---|
| 2821 |  2001-01-25: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2822 |     - KERNEL32: o Memory map commit bugfix for write accesses
 | 
|---|
| 2823 |                   (fixes eternal loop in OLE during IE5 install)
 | 
|---|
| 2824 |     - NTDLL:    o Ported latest NtQuerySystemInformation from Wine 
 | 
|---|
| 2825 |                   (includes fix for IE5 install)
 | 
|---|
| 2826 |     - OLE32:    o Resync with latest Wine (storage, stg_*)
 | 
|---|
| 2827 | 
 | 
|---|
| 2828 |  2001-01-24: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2829 |     - KERNEL32: o Default display and windows codepage set to 1252
 | 
|---|
| 2830 | 
 | 
|---|
| 2831 |  2001-01-23: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2832 |     - KERNEL32: o long2ShortName completely broken. now properly detects 8.3
 | 
|---|
| 2833 |                   filename and copies it (TODO: not finished)
 | 
|---|
| 2834 |                 o Set x position to 0 after seeing a linefeed in the WriteFile
 | 
|---|
| 2835 |                   datastream (vio console)
 | 
|---|
| 2836 |                   (Sun Java 1.3 output doesn't include carriage returns)
 | 
|---|
| 2837 |                 o ExitProcess change: make sure no threads are still suspended 
 | 
|---|
| 2838 |                   (with SuspendThread) by calling ResumeThread
 | 
|---|
| 2839 |                   OS/2 seems to be unable to terminate the process otherwise.
 | 
|---|
| 2840 |                   (fixes exitlist zombie after executing the Sun Java 1.3 interpreter)
 | 
|---|
| 2841 |                 o Added handle manager class for standard handles (in/out/error)
 | 
|---|
| 2842 |                   WriteFile for STD_OUTPUT_HANDLE & STD_ERROR_HANDLE now works.
 | 
|---|
| 2843 |     - PELDR:    o Don't strip quotes from cmd line parameter part.
 | 
|---|
| 2844 |                   (fixes Sun Java 1.3 JRE install (must replace 16 bits setup
 | 
|---|
| 2845 |                    with 32 bits version))
 | 
|---|
| 2846 |     - INCLUDE\win\thread.h:
 | 
|---|
| 2847 |                 o Wrong layout of TEB structure
 | 
|---|
| 2848 |                   (fixes crash in Sun Java 1.3 interpreter)
 | 
|---|
| 2849 | 
 | 
|---|
| 2850 |  2001-01-22: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2851 |     - KERNEL32: o CreateFileMapping fix; create new handle even when called
 | 
|---|
| 2852 |                   with name of existing map (and return ERROR_ALREADY_EXISTS)
 | 
|---|
| 2853 |                 o _HMHandleGetFree fix; handle allocation wasn't thread safe
 | 
|---|
| 2854 |                   (_HMHandleGetFree checks if hHMHandle == INVALID_HANDLE_VALUE,
 | 
|---|
| 2855 |                    but calling functions sets this value afterwards -> possible
 | 
|---|
| 2856 |                    that two threads allocate the same handle)
 | 
|---|
| 2857 |                   (solution: set hHMHandle in _HMHandleGetFree)
 | 
|---|
| 2858 |                   HMCreatePipe call also failed because of this. (two handles
 | 
|---|
| 2859 |                   allocated -> both allocate the same handle)
 | 
|---|
| 2860 |                 o HMCreatePipe change (free 1st handle if 2nd handle alloc fails)
 | 
|---|
| 2861 |     - DOC\Readme.txt:
 | 
|---|
| 2862 |                 o Added remark about the need to run odininst.exe when installing
 | 
|---|
| 2863 |                   Odin manually.
 | 
|---|
| 2864 |                 o Updates
 | 
|---|
| 2865 | 
 | 
|---|
| 2866 |  2000-01-21: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
 | 
|---|
| 2867 |     - WINMM/MCICDA:
 | 
|---|
| 2868 |                 o Track data fixes
 | 
|---|
| 2869 | 
 | 
|---|
| 2870 |  2001-01-20: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2871 |     - tools\dailybuild, include\versionos2.h:
 | 
|---|
| 2872 |                 o Fixed netlabs upload.
 | 
|---|
| 2873 |                 o Moved buildlevel info from versionos2.h to odinbuild.h.
 | 
|---|
| 2874 | 
 | 
|---|
| 2875 |  2001-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2876 |     - AVIFIL32: o Resynched with latest Wine code
 | 
|---|
| 2877 |                 o Added AVIStreamTimeToSample & AVIStreamSampleToTime stubs
 | 
|---|
| 2878 |     - SETUPAPI: o Wine port (stubs only)
 | 
|---|
| 2879 | 
 | 
|---|
| 2880 |  2001-01-20: Yuri Dario <mc6530@mclink.it>
 | 
|---|
| 2881 |     - USER32:   o Set codepage for DCs returned by GetDCEx
 | 
|---|
| 2882 | 
 | 
|---|
| 2883 |  2000-01-20: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
 | 
|---|
| 2884 |     - WINMM/MCICDA:
 | 
|---|
| 2885 |                 o MCI_STATUS_POSITION bugfix
 | 
|---|
| 2886 | 
 | 
|---|
| 2887 |  2001-01-19: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2888 |     - USER32:   o GetCaretPos & SetCaretPos bugfixes. Did not take client
 | 
|---|
| 2889 |                   window origin into account.
 | 
|---|
| 2890 |                   (fixes cursor position problems in e.g. Notepad)
 | 
|---|
| 2891 | 
 | 
|---|
| 2892 |  2000-01-19: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
 | 
|---|
| 2893 |     - WNASPI32: o DosCreateMutexSem call bugfix.
 | 
|---|
| 2894 |                   (CDRWIN works again)
 | 
|---|
| 2895 | 
 | 
|---|
| 2896 |  2001-01-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2897 |     - Win32k:   o Added support for kernel revisions. (like 14062A)
 | 
|---|
| 2898 |                 o Added build 14062a kernels.
 | 
|---|
| 2899 |                 o Added build 14062 kernels for Warp 4.
 | 
|---|
| 2900 | 
 | 
|---|
| 2901 |  2001-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2902 |     - GDI32:    o More logging
 | 
|---|
| 2903 |                 o Use StretchDIBits in SetDIBitsToDevice instead of Open32
 | 
|---|
| 2904 |                   function. (which doesn't work for compressed bitmaps)
 | 
|---|
| 2905 |                   (MS Excel 97 startup bitmap displays correctly now)
 | 
|---|
| 2906 |                   Also solves y inversion related problems.
 | 
|---|
| 2907 |                   (MS Developer startup bitmap overlay correct now (Visual C++ logo))
 | 
|---|
| 2908 |     - WGSS50:   o Reported problems with SaveDC/RestoreDC and StretchDIBits
 | 
|---|
| 2909 |                   (Modelator graphics corruption fixed)
 | 
|---|
| 2910 |     - KERNEL32: o Create system.ini with '[mci] cdaudio=mcicda.drv' section
 | 
|---|
| 2911 |                   during installation
 | 
|---|
| 2912 |                 o Fixed bug in lstrncpyA (return when specified length is 0)
 | 
|---|
| 2913 |                 o MultiByteToWideChar bugfix (calculate string length if input
 | 
|---|
| 2914 |                   length is -1 before checking if dest length is 0)
 | 
|---|
| 2915 |                   (MS Word 97 no longer crashes)
 | 
|---|
| 2916 |                 o RegQueryValueExW bugfix
 | 
|---|
| 2917 |                   (caused stack corruption in Excel and probably many other
 | 
|---|
| 2918 |                    apps that use this function too)
 | 
|---|
| 2919 |     - OLEAUT32: o Ported David's typelib changes.
 | 
|---|
| 2920 |                   (MS Word 97 starts immediately and doesn't spend an hour
 | 
|---|
| 2921 |                    searching for typelibs in dlls)
 | 
|---|
| 2922 |                   TODO: Check bugfixes/changes in latest Wine code and merge
 | 
|---|
| 2923 |                         them.
 | 
|---|
| 2924 |                   TODO: Port picture classes
 | 
|---|
| 2925 | 
 | 
|---|
| 2926 |  2000-01-17: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
 | 
|---|
| 2927 |     - WINMM\MCICDA:
 | 
|---|
| 2928 |                 o Wrong call to os2CDCloseTray
 | 
|---|
| 2929 | 
 | 
|---|
| 2930 |  2001-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2931 |     - COMDLG32: o Get current directory if initial dir == NULL (win31 style
 | 
|---|
| 2932 |                   file dialog).
 | 
|---|
| 2933 |                 o Fix for filter. (default to NULL; not " /0/0")
 | 
|---|
| 2934 |                 o Scale icons to 16x16 (win31 style file dialog) -> system
 | 
|---|
| 2935 |                   default (32x32) is too big. (TODO: Our user32 icons are too
 | 
|---|
| 2936 |                   big)
 | 
|---|
| 2937 |                 o Drive list not initialized correctly. (GetDriveTypeA return
 | 
|---|
| 2938 |                   value interpreted wrong)
 | 
|---|
| 2939 |                   -> use GetLogicalDrives instead to avoid accessing floppy
 | 
|---|
| 2940 |                      drives (which GetDriveType does)
 | 
|---|
| 2941 |     - USER32:   o Replaced some icons with those found in SHELL32:
 | 
|---|
| 2942 |                   - open & closed folder
 | 
|---|
| 2943 |                   - floppy, harddisk & network drive
 | 
|---|
| 2944 |                 o Fixed bug in NotifyFormatFrame method (fixes problems
 | 
|---|
| 2945 |                   with combobox)
 | 
|---|
| 2946 |                 o ComboLBox bugfix (extra vertical scrollbar)
 | 
|---|
| 2947 |                 o LISTBOX_Directory bugfix (must check for FILE_ATTRIBUTE_NORMAL)
 | 
|---|
| 2948 |                   (removes files from directory listing in common file dialog)
 | 
|---|
| 2949 |     - KERNEL32: o Fix for executable names with spaces in path
 | 
|---|
| 2950 |                 o Workaround for applications that block the PM input queue
 | 
|---|
| 2951 |                   while waiting for a child process to terminate.
 | 
|---|
| 2952 |                   (WaitSingleObject now calls MsgWaitMultipleObjects and
 | 
|---|
| 2953 |                    processes messages while waiting for the process to die)
 | 
|---|
| 2954 |                   (Napster install now doesn't block PM anymore (forcing a reboot))
 | 
|---|
| 2955 |                 o Add class keys for SHDOCVW during install
 | 
|---|
| 2956 |     - SHDOCVW:  o Added (Wine 20010112 port)
 | 
|---|
| 2957 |     - WSOCK32:  o Changed File and Product version to 0x0400, 0x0565012C (NT4, SP6)
 | 
|---|
| 2958 | 
 | 
|---|
| 2959 |  2001-01-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2960 |     - tools\install, tools\dailybuild:
 | 
|---|
| 2961 |                 o Added odincrt.dll to debug release (to make wgss50.dll happy).
 | 
|---|
| 2962 | 
 | 
|---|
| 2963 |  2001-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2964 |     - USER32:   o DrawIconEx bugfix (fixes bitmap menu item when maximizing
 | 
|---|
| 2965 |                   MDI window)
 | 
|---|
| 2966 |     - COMDLG32: o Added/Ported 16 bits common dialog Wine code.
 | 
|---|
| 2967 |                   (GetOpen/SaveFileName with hook and without OFN_EXPLORER
 | 
|---|
| 2968 |                    flag implies old Windows 3.1 style dialog)
 | 
|---|
| 2969 |                   (not completely working yet, but better than the mess we
 | 
|---|
| 2970 |                    saw before (InstallShield -> browse dir))
 | 
|---|
| 2971 | 
 | 
|---|
| 2972 |  2001-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2973 |     - KERNEL32: o Fix for WriteFile & ReadFile (wrong return code was expected)
 | 
|---|
| 2974 |     - USER32:   o HAS_THICKFRAME macro changed (identical to Wine now)
 | 
|---|
| 2975 |                   (fixes MDI window borders (which were too thin))
 | 
|---|
| 2976 | 
 | 
|---|
| 2977 |  2001-01-10: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2978 |     - tools\install:
 | 
|---|
| 2979 |                 o Corrected packing of wpss50.dll.
 | 
|---|
| 2980 |                 o Added .sym files to release distributions. (optional package)
 | 
|---|
| 2981 | 
 | 
|---|
| 2982 |     - tools\dailybuild:
 | 
|---|
| 2983 |                 o Removed uploading of glide-stuff.
 | 
|---|
| 2984 | 
 | 
|---|
| 2985 |  2001-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 2986 |     - INCLUDE\dcdata, GDI32, USER32:
 | 
|---|
| 2987 |                 o Updates for WGSS50.
 | 
|---|
| 2988 | 
 | 
|---|
| 2989 |     - LIB\WGSS50.lib, BIN\WGSS50.dll:
 | 
|---|
| 2990 |                 o Binary distribution of WGSS50 added
 | 
|---|
| 2991 | 
 | 
|---|
| 2992 |  2001-01-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 2993 |     - tools\dailybuild:
 | 
|---|
| 2994 |                 o Added wgss50.dll to the .ZIPs.
 | 
|---|
| 2995 | 
 | 
|---|
| 2996 |     - lib       o Added making of wgss50.lib.
 | 
|---|
| 2997 |                   (So, that it corresponds to the other libraries made there.)
 | 
|---|
| 2998 |                 o Converted wgss50.lib to a deffile.
 | 
|---|
| 2999 | 
 | 
|---|
| 3000 |  2001-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 3001 |     - ReportingBugs.txt:
 | 
|---|
| 3002 |                 o Specify windows & system32 directory in bug reports
 | 
|---|
| 3003 |                   (description included on how to determine this)
 | 
|---|
| 3004 | 
 | 
|---|
| 3005 |  2001-01-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
 | 
|---|
| 3006 |     - tools\dailybuild:
 | 
|---|
| 3007 |                 o Updated with temporary server address.
 | 
|---|
| 3008 |                 o Put ftp userid/passwords into separate file.
 | 
|---|
| 3009 |                 o Build number incrementation. (Stored in versionos2.h)
 | 
|---|
| 3010 |                   (Use bldlevel on the DLLs to look at it.)
 | 
|---|
| 3011 |                 o Splitted out 3dxf/glide stuff into separat .zips.
 | 
|---|
| 3012 | 
 | 
|---|
| 3013 |     - Win32k:   o Added support for the ldrCheckInternalName bug. :-)
 | 
|---|
| 3014 |                   (see /src/win32k/ldr/myldrCheckInternalName.cpp for details.)
 | 
|---|
| 3015 |                 o Made pe.exe default.
 | 
|---|
| 3016 |                 o Added UNI and SMP 14062 kernels (convenience pack).
 | 
|---|
| 3017 |                   (Have anyone got the Warp 4 convenience pack with the right .sym files?)
 | 
|---|
| 3018 | 
 | 
|---|
| 3019 |     - bin\bldlevelinf.cmd:
 | 
|---|
| 3020 |                 o Removed colon after otherwise to make it work with Object REXX.
 | 
|---|
| 3021 | 
 | 
|---|
| 3022 |     - makefiles:
 | 
|---|
| 3023 |                 o Merged BuildLevel revisions with the LXOpt revisions.
 | 
|---|
| 3024 |                   (There seems like there have been some kind of revision mixup in
 | 
|---|
| 3025 |                    Sanders tree?)
 | 
|---|
| 3026 |                 o Updated the other post files with LXOpt.
 | 
|---|
| 3027 | 
 | 
|---|
| 3028 |  2001-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 3029 |     - install:  o Win32k installation temporarily disabled due to a WarpIn bug
 | 
|---|
| 3030 |                   (config.sys lines removed)
 | 
|---|
| 3031 |                 o Update: This is NOT a WarpIn bug, but an error in the script.
 | 
|---|
| 3032 |                           Now fixed.
 | 
|---|
| 3033 |                 o Added check for WarpIn 0.9.6 or higher
 | 
|---|
| 3034 |                 o Added check for OS/2 3.x or higher
 | 
|---|
| 3035 |     - src\makefile:
 | 
|---|
| 3036 |                 o Exclude msvcrt from build process.
 | 
|---|
| 3037 |                   (download odinapp.zip from ftp.os2.org to install a small
 | 
|---|
| 3038 |                    MFC app with MFC + MSVCRT dlls)
 | 
|---|
| 3039 | 
 | 
|---|
| 3040 |  2001-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 3041 |     - makefiles:o Use LXLite for release build binaries (better compression)
 | 
|---|
| 3042 |                   Can't use it for debug binaries as IPMD doesn't like it.
 | 
|---|
| 3043 | 
 | 
|---|
| 3044 |  2001-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 3045 |     - KERNEL32: o KERNEL32_99 should return 1 (according to Wine)
 | 
|---|
| 3046 |                 o KERNEL32_100 export added (stub)
 | 
|---|
| 3047 |     - USER32:   o Rewrote window handle management; only start reusing window
 | 
|---|
| 3048 |                   handles when max handle has been assigned.
 | 
|---|
| 3049 |     - GDI32/USER32/KERNEL32:
 | 
|---|
| 3050 |                 o Don't export private Odin functions by name (we import
 | 
|---|
| 3051 |                   everything by ordinal)
 | 
|---|
| 3052 | 
 | 
|---|
| 3053 |  2001-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
 | 
|---|
| 3054 |     - USER32:   o Menu cast bugfix (bitmap handle is 32 bits)
 | 
|---|
| 3055 |                   (Fixes menu bitmaps in Lotus Notes 5)
 | 
|---|
| 3056 | 
 | 
|---|