| 1 | /* $Id: changelog,v 1.2211 2002-07-08 12:56:05 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2002-07-08: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 4 | - USER32: o Changed SetFocus fix; only disallow focus change for minimized
|
|---|
| 5 | and disabled windows.
|
|---|
| 6 | o Put back focus fix from 2001-11-20
|
|---|
| 7 |
|
|---|
| 8 | 2002-07-06: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 9 | - KERNEL32: o Com overlapped IO changes for reference counts
|
|---|
| 10 |
|
|---|
| 11 | 2002-07-05: Platon Fomichev <platon@innotek.de>
|
|---|
| 12 | - USER32: o SetFocus not allowed on invisible windows
|
|---|
| 13 |
|
|---|
| 14 | 2002-07-05: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 15 | - KERNEL32: o Dump exception log to except.log in system32 directory
|
|---|
| 16 | o Added functions to customize logging (filename +
|
|---|
| 17 | enable/disable
|
|---|
| 18 | o Keep reference count for overlapped IO objects to avoid
|
|---|
| 19 | premature destruction
|
|---|
| 20 |
|
|---|
| 21 | 2002-07-03: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 22 | - WS2_32: o Added WSASendDisconnect stub
|
|---|
| 23 | - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap)
|
|---|
| 24 | o Fill fixes for single lines (horizontal & vertical)
|
|---|
| 25 | o Optimized 8, 16 & 32bpp Fills
|
|---|
| 26 |
|
|---|
| 27 | 2002-07-02: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 28 | - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC
|
|---|
| 29 | (problem located in GDI32)
|
|---|
| 30 |
|
|---|
| 31 | 2002-07-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 32 | - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W
|
|---|
| 33 | (Wine doesn't do this, but experiments in Windows 2000 show
|
|---|
| 34 | different behaviour)
|
|---|
| 35 | o Edit control: don't beep when receiving Enter (single line
|
|---|
| 36 | control)
|
|---|
| 37 | - DDRAW: o Color fill bugfixes:
|
|---|
| 38 | - fill up to height, not height - 1
|
|---|
| 39 | - check for single pixel line fills -> avoid heap corruption
|
|---|
| 40 | o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC
|
|---|
| 41 | o SurfReleaseDC; initialize BITMAPINFO structure properly
|
|---|
| 42 | before calling GetDIBits + fix for 16 bpp GetDIBits
|
|---|
| 43 | (which always returns data in RGB555 format in our case)
|
|---|
| 44 | o Fill16on16: convert RGB555 color value to RGB565
|
|---|
| 45 | o Mark surface as changed (ChangeUniquenessValue) after
|
|---|
| 46 | blit & fill
|
|---|
| 47 | - KERNEL32: o Print win32 module name when exception occurs
|
|---|
| 48 |
|
|---|
| 49 | 2002-06-30: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 50 | - KERNEL32: o WriteFile for standard out: convert line feed without
|
|---|
| 51 | carriage return into CR+LF
|
|---|
| 52 | o VirtualFree; don't allow app to decommit stack pages
|
|---|
| 53 | (VAC runtime uses last stack page to store some internal
|
|---|
| 54 | data; if freed pe/pec will crash during exit)
|
|---|
| 55 |
|
|---|
| 56 | 2002-06-28: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 57 | - USER32: o Removed focus fix from 2001-11-20; controls of child
|
|---|
| 58 | dialogs can receive input focus (CVP wizard dialogs)
|
|---|
| 59 | o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
|
|---|
| 60 | flag is set (otherwise the hook will be called twice)
|
|---|
| 61 | o Call message filter hook in IsDialogMessageA/W
|
|---|
| 62 | - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
|
|---|
| 63 |
|
|---|
| 64 | 2002-06-27: Platon Fomichev <platon@innotek.de>
|
|---|
| 65 | - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
|
|---|
| 66 | done in windows)
|
|---|
| 67 |
|
|---|
| 68 | 2002-06-27: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 69 | - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
|
|---|
| 70 | is valid. (COMDLG32_UpdateCurrentDir)
|
|---|
| 71 | (fixes crash in file dialog when double clicking on abstract
|
|---|
| 72 | objects like 'My Computer')
|
|---|
| 73 |
|
|---|
| 74 | 2002-06-26: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 75 | - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
|
|---|
| 76 | DosDateTimeToFileTime functions;
|
|---|
| 77 | Real problem lies in the fact that the times returned
|
|---|
| 78 | by DosFindFirst, DosFindNext, DosQueryPathInfo &
|
|---|
| 79 | DosQueryFileInfo are in local time; we must convert them
|
|---|
| 80 | to file time (UTC)
|
|---|
| 81 | o Fixed bug in OSLibGetDriveType; broke GetDriveType for
|
|---|
| 82 | floppy drives
|
|---|
| 83 | o Fixed CreateFile for disks
|
|---|
| 84 | o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
|
|---|
| 85 | fail if no disk present or when the media has been changed
|
|---|
| 86 | o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
|
|---|
| 87 | always succeed
|
|---|
| 88 | o Don't fail CreateFile for disk when DosOpen fails with
|
|---|
| 89 | a sharing violation. Apparently this is allowed in windows;
|
|---|
| 90 | although you can't do much with the handle. (limited to
|
|---|
| 91 | IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
|
|---|
| 92 |
|
|---|
| 93 | 2002-06-26: knut st. osmundsen <bird@anduin.net>
|
|---|
| 94 | - KERNEL32\testcase:
|
|---|
| 95 | o Added testcase for Test of SetConsoleCtrlHandler() and
|
|---|
| 96 | GenerateConsoleCtrlEvent().
|
|---|
| 97 | Note. The last part of it is known to fail since the
|
|---|
| 98 | functions aren't 100% implemented yet.
|
|---|
| 99 | o Added mini testcase for MultiByteToWideChar().
|
|---|
| 100 | o Use the testsuite tools for unit testcases too.
|
|---|
| 101 | - KERNEL32: o Partial implementation of Console Ctrl Handlers.
|
|---|
| 102 | (Ctrl-Break and Ctrl-C)
|
|---|
| 103 | o GetFileType on std files doesn't always return TYPE_CHAR.
|
|---|
| 104 | Ask what kind of filehandle we have.
|
|---|
| 105 | (Solves 'press key' problem with "wcc386.exe > file".)
|
|---|
| 106 | o Enable writing to STDERR. (This might have brought into
|
|---|
| 107 | light a redirection problem.)
|
|---|
| 108 |
|
|---|
| 109 | 2002-06-25: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 110 | - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
|
|---|
| 111 | key data; registry.dll returns the wrong value (too big;
|
|---|
| 112 | appears size of internal storage)
|
|---|
| 113 | o FileTimeToSystemTime fix (no problems with WGSS implementation)
|
|---|
| 114 | o Removed bad unicode change
|
|---|
| 115 |
|
|---|
| 116 | 2002-06-25: knut st. osmundsen <bird@anduin.net>
|
|---|
| 117 | - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
|
|---|
| 118 | is bad.
|
|---|
| 119 | - SHELL32: o Bad linked list walking. (accessed node after free)
|
|---|
| 120 | - USER32: o Allocate space the two missing RGB2 entries.
|
|---|
| 121 | o Use "%.*s" and "%.*ls" when we have a string with a length.
|
|---|
| 122 | (Crashing in logging is awfull. Creates zombies!)
|
|---|
| 123 | - ODINCRT: o Reserve low 32MB of address space before initializing
|
|---|
| 124 | the CRT IF we compile with the debug heap (kLib).
|
|---|
| 125 |
|
|---|
| 126 | 2002-06-24: knut st. osmundsen <bird@anduin.net>
|
|---|
| 127 | - Testsuite:
|
|---|
| 128 | o Most of the watcom case done and working.
|
|---|
| 129 | - Make: o Corrected LIB paths of the win32 watcom setup.
|
|---|
| 130 |
|
|---|
| 131 | 2002-06-21: knut st. osmundsen <bird@anduin.net>
|
|---|
| 132 | - KERNEL32: o LCMapStringW fix
|
|---|
| 133 |
|
|---|
| 134 | 2002-06-20: Platon Fomichev <platon@innotek.de>
|
|---|
| 135 | - COMCTL32: o Don't erase background for ownerdrawn listview controls
|
|---|
| 136 | (LISTVIEW_RefreshReport)
|
|---|
| 137 |
|
|---|
| 138 | 2002-06-20: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 139 | - OLE32: o Drag 'n drop fix
|
|---|
| 140 | - USER32: o Drag 'n drop fix
|
|---|
| 141 | o Enabled drag 'n drop again
|
|---|
| 142 | o Added DisableDragDrop
|
|---|
| 143 |
|
|---|
| 144 | 2002-06-20: knut st. osmundsen <bird@anduin.net>
|
|---|
| 145 | - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
|
|---|
| 146 | - Tools: o Added ExecTestcase.cmd for executing a testing and do
|
|---|
| 147 | result logging.
|
|---|
| 148 | - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
|
|---|
| 149 | - Testsuite:
|
|---|
| 150 | o Use ExecTestcase.cmd for executing the testcases.
|
|---|
| 151 | Logging & execute all testcases nomatter return values.
|
|---|
| 152 | o Added watcomc.mak which is pretty simple watcom tests.
|
|---|
| 153 | (currently noone of them really work 100%.)
|
|---|
| 154 | o TODO: Make a timeout executer which kills the children when
|
|---|
| 155 | they've been executing too long. This is required in order to
|
|---|
| 156 | run the testsuite without human interaction.
|
|---|
| 157 |
|
|---|
| 158 | 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 159 | - OLE32: o Drag 'n drop fixes
|
|---|
| 160 |
|
|---|
| 161 | 2002-06-18: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 162 | - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
|
|---|
| 163 | mouse state is out of sync and update if necessary
|
|---|
| 164 |
|
|---|
| 165 | 2002-06-18: knut st. osmundsen <bird@anduin.net>
|
|---|
| 166 | - Win32k: o Fixed compiler warning which caused the M$ compiler
|
|---|
| 167 | to choke on some systems.
|
|---|
| 168 | - Testsuite:
|
|---|
| 169 | o A collection of testcases running real win32 apps.
|
|---|
| 170 | Not finished, just an idea currently, intended for
|
|---|
| 171 | testing odin releases and changes.
|
|---|
| 172 | Currently limiting ourselfs to CUI progs.
|
|---|
| 173 | o A simple DoxyGen testcase is checked in.
|
|---|
| 174 | o Read the micro howto in testsuite/Makefile.
|
|---|
| 175 | - Make: o Synced with outside world. (NMAKE5 changes mostly.)
|
|---|
| 176 | o Added support for TARGET_MODE = TESTCASE.
|
|---|
| 177 | o Added separate tools file for the testsuite.
|
|---|
| 178 |
|
|---|
| 179 | 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 180 | - USER32: o Disabled drag 'n drop temporarily (not yet stable)
|
|---|
| 181 |
|
|---|
| 182 | 2002-06-16: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 183 | - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
|
|---|
| 184 | o Removed: LoadLibraryExA: expand library filename
|
|---|
| 185 | (doesn't happen in Windows)
|
|---|
| 186 | - INSTALL: o Create object for Odin User's Manual + fixed object
|
|---|
| 187 | creation for OdinBug Manual
|
|---|
| 188 | o Include OdinBug.HLP & OdinUser.INF
|
|---|
| 189 | - SHELL32: o Fixed desktop object creation during win32 app install
|
|---|
| 190 |
|
|---|
| 191 | 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 192 | - SETUPAPI: o Wine resync + added debug wrappers
|
|---|
| 193 | - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
|
|---|
| 194 | o Check for NULL parameters in GetFullPathNameW
|
|---|
| 195 | o hmfile.cpp: ParsePath fix; check boundary
|
|---|
| 196 | o LoadLibraryExA: expand library filename; might contain
|
|---|
| 197 | environment variables
|
|---|
| 198 | o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
|
|---|
| 199 | registry.dll doesn't like this type for some reason
|
|---|
| 200 | - USER32: o Do proper filtering for PeekMessage
|
|---|
| 201 | - NTDLL: o Forward heap functions to kernel32
|
|---|
| 202 | - QUARTZ: o Removed old code (stub dll now)
|
|---|
| 203 | - AVIFIL32: o Resync with Wine
|
|---|
| 204 | - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
|
|---|
| 205 |
|
|---|
| 206 | 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 207 | - USER32: o SetCustomWndHandleSemName added to override shared semaphore
|
|---|
| 208 | name used to synchronize global window handle array access
|
|---|
| 209 | (to avoid name clash with Odin)
|
|---|
| 210 | - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
|
|---|
| 211 | name used to synchronize global memory map list access
|
|---|
| 212 | (to avoid name clash with Odin)
|
|---|
| 213 |
|
|---|
| 214 | 2002-06-13: Platon Fomichev <platon@innotek.de>
|
|---|
| 215 | - USER32: o Only minimize or maximize window if appropriate style flag set
|
|---|
| 216 |
|
|---|
| 217 | 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 218 | - KERNEL32: o If bytes present in COM device buffer, read them directly;
|
|---|
| 219 | even for overlapped IO calls.
|
|---|
| 220 |
|
|---|
| 221 | 2002-06-11: Platon Fomichev <platon@innotek.de>
|
|---|
| 222 | - SHELL32: o Ignore name changes for 'My Computer' and other non-file
|
|---|
| 223 | objects (file dialogs)
|
|---|
| 224 |
|
|---|
| 225 | 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 226 | - OLEAUT32, SHELL32:
|
|---|
| 227 | o Some Wine updates
|
|---|
| 228 | - KERNEL32: o Overlapped IO bugfixes
|
|---|
| 229 | o Thread TEB linking bugfix
|
|---|
| 230 | o Setup TEB structure before creating thread. Otherwise it's
|
|---|
| 231 | created too late and thread functions called by the app
|
|---|
| 232 | right after thread creation will fail.(e.g. SetThreadPriority)
|
|---|
| 233 |
|
|---|
| 234 | 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
|
|---|
| 235 | - TOOLS\ODINBUG:
|
|---|
| 236 | o Added VX-REXX sources for OdinBug
|
|---|
| 237 | - DOC: o OdinBug.HLP update
|
|---|
| 238 | - BIN: o OdinBug.exe update
|
|---|
| 239 |
|
|---|
| 240 | 2002-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 241 | - OLE32: o Fixed bug in StgStreamImpl_Seek
|
|---|
| 242 | - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
|
|---|
| 243 | (fixes crash in Java 1.4 install)
|
|---|
| 244 | - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
|
|---|
| 245 | overlapped IO
|
|---|
| 246 |
|
|---|
| 247 | 2002-06-09: knut st. osmundsen <bird@anduin.net>
|
|---|
| 248 | - Makefiles:
|
|---|
| 249 | o Exclude dummy.c from the dependencies.
|
|---|
| 250 |
|
|---|
| 251 | 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
|
|---|
| 252 | - KERNEL32: o Corrections for Austrian NLS file
|
|---|
| 253 |
|
|---|
| 254 | 2002-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 255 | - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
|
|---|
| 256 | communication
|
|---|
| 257 | (fixes OpenOffice 1.0 crash during install (at 76%))
|
|---|
| 258 | o Skip window handle 0x68000000 (otherwise more difficult
|
|---|
| 259 | to compare logs with old builds)
|
|---|
| 260 | o Logging changes for comparing source file names
|
|---|
| 261 | o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
|
|---|
| 262 | (fixes Java 1.4 installation (first dialog))
|
|---|
| 263 | - COMDLG32: o GetFileDialog95W fix (check if template name is string or
|
|---|
| 264 | numeric id)
|
|---|
| 265 | (fixes OpenOffice 1.0 file open dialog crash)
|
|---|
| 266 | - WININET: o Fixed shlwapi imports
|
|---|
| 267 | - OLE32: o Resync with latest Wine
|
|---|
| 268 | - OLEAUT32: o Resync with latest Wine
|
|---|
| 269 |
|
|---|
| 270 | 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 271 | - SHELL32: o Moved resource files to subdir
|
|---|
| 272 | - COMDLG32: o Compile fix + moved resource files to subdir
|
|---|
| 273 | - KERNEL32: o Export OSLibDosDevIOCtl
|
|---|
| 274 | - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
|
|---|
| 275 | (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
|
|---|
| 276 | package from May 2001 (or newer) or recent JJSCDROM)
|
|---|
| 277 | - DDRAW: o Fixed clipping bug with non-frame windows
|
|---|
| 278 | o Print FOURCCs supported by Dive
|
|---|
| 279 |
|
|---|
| 280 | 2002-06-08: knut *st. osmundsen <bird@anduin.net>
|
|---|
| 281 | - TOOLS\WRC:o Compile fix
|
|---|
| 282 |
|
|---|
| 283 | 2002-06-07: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 284 | - SHLWAPI: o Resync with latest Wine & added LGPL license
|
|---|
| 285 | - SHELL32: o Some updates for upcoming resync
|
|---|
| 286 |
|
|---|
| 287 | 2002-06-06: knut st. osmundsen <bird@anduin.net>
|
|---|
| 288 | - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
|
|---|
| 289 |
|
|---|
| 290 | 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
|
|---|
| 291 | - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
|
|---|
| 292 | opening an existing file
|
|---|
| 293 |
|
|---|
| 294 | 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 295 | - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
|
|---|
| 296 |
|
|---|
| 297 | 2002-06-06: Platon Fomichev <platon@innotek.de>
|
|---|
| 298 | - SHELL32: o Always expand root when initializing treeview
|
|---|
| 299 | o Do not sort tree in TVN_ITEMEXPANDINGA
|
|---|
| 300 |
|
|---|
| 301 | 2002-06-05: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 302 | - WINMM: o Put back original DART buffer size selection code
|
|---|
| 303 | (new one messes up e.g. RealPlayer)
|
|---|
| 304 | o Postpone recording when waveInStart called without
|
|---|
| 305 | any buffers in the queue. Start in during next
|
|---|
| 306 | waveInAddBuffer call.
|
|---|
| 307 | o Fixed DART waveout resume
|
|---|
| 308 |
|
|---|
| 309 | 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 310 | - USER32: o Fix for AltGr key combinations
|
|---|
| 311 | - WINMM: o Updates for wave playback
|
|---|
| 312 |
|
|---|
| 313 | 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 314 | - USER32, OLE32:
|
|---|
| 315 | o Drag and drop fixes
|
|---|
| 316 | - BIN\ODINBUG:
|
|---|
| 317 | o Update by Herwig Bauernfeind (0.5.6a)
|
|---|
| 318 | - DOC\MANUAL:
|
|---|
| 319 | o Users manual sources by Herwig Bauernfeind
|
|---|
| 320 | - DOC: o Added odinuser.inf by Herwig Bauernfeind
|
|---|
| 321 |
|
|---|
| 322 | 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 323 | - USER32\CONTROLS:
|
|---|
| 324 | o New dll for user32 controls (latest Wine)
|
|---|
| 325 | (not activated, not finished (resync))
|
|---|
| 326 | - USER32: o Moved drag & drop code to seperate file
|
|---|
| 327 | o Updates for OLE drag 'n drop
|
|---|
| 328 | - KERNEL32: o LogException: check lockcount before changing it on entry
|
|---|
| 329 | (it is not always > 0 -> previously caused hang in exception
|
|---|
| 330 | handler (zombie process))
|
|---|
| 331 | - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
|
|---|
| 332 | - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
|
|---|
| 333 | (todo: Odin app -> WPS)
|
|---|
| 334 |
|
|---|
| 335 | 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 336 | - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
|
|---|
| 337 | performance
|
|---|
| 338 | o DragQueryFileW fix
|
|---|
| 339 | - WINMM: o Implemented minimal control change notification
|
|---|
| 340 | - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
|
|---|
| 341 | control (probably not 100% correct)
|
|---|
| 342 | - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
|
|---|
| 343 | (works in notepad; drag file object from WPS into notepad
|
|---|
| 344 | window)
|
|---|
| 345 |
|
|---|
| 346 | 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 347 | - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
|
|---|
| 348 | - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
|
|---|
| 349 | (with LLMHF_INJECTED flag set)
|
|---|
| 350 |
|
|---|
| 351 | 2002-05-31: Platon Fomichev <platon@innotek.de>
|
|---|
| 352 | - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
|
|---|
| 353 |
|
|---|
| 354 | 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 355 | - WINMM: o Mixer fixes
|
|---|
| 356 |
|
|---|
| 357 | 2002-05-30: Platon Fomichev <platon@innotek.de>
|
|---|
| 358 | - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
|
|---|
| 359 | (seems to be done in windows)
|
|---|
| 360 |
|
|---|
| 361 | 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 362 | - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
|
|---|
| 363 | (fixes AbiWord keyboard input)
|
|---|
| 364 | - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
|
|---|
| 365 | o mixerGetLineInfoW fix
|
|---|
| 366 | - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
|
|---|
| 367 | wrt cx parameter (when set to zero)
|
|---|
| 368 | (fixes properties dialog of sndvol32.exe (windows mixer app))
|
|---|
| 369 | o Updated status control to latest Wine & applied two
|
|---|
| 370 | bugfixes (already sent to wine-patches)
|
|---|
| 371 |
|
|---|
| 372 | 2002-05-29: Platon Fomichev <platon@innotek.de>
|
|---|
| 373 | - USER32: o GetAsyncKeyState fix for VK_MENU
|
|---|
| 374 | - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
|
|---|
| 375 | (invalidate control to prevent leftovers of size grip)
|
|---|
| 376 |
|
|---|
| 377 | 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 378 | - REGSVR32: o Fixed startup
|
|---|
| 379 | - WINMM: o Completely implemented mixerSetControlDetails
|
|---|
| 380 | o Mixer updates
|
|---|
| 381 | o Support added for master volume (ioctl90 mode)
|
|---|
| 382 | o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
|
|---|
| 383 | o Wave recording now works
|
|---|
| 384 |
|
|---|
| 385 | 2002-05-28: Platon Fomichev <platon@innotek.de>
|
|---|
| 386 | - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
|
|---|
| 387 | - KERNEL32: o Debugger updates
|
|---|
| 388 |
|
|---|
| 389 | 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 390 | - WINMM: o Completely implemented mixerGetControlDetailsA/W
|
|---|
| 391 | o Mixer updates
|
|---|
| 392 | - TESTAPP\MIXER:
|
|---|
| 393 | o Test application for mixer functions
|
|---|
| 394 |
|
|---|
| 395 | 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 396 | - WINMM: o Fix for soundcards without ioctl90 mixer support
|
|---|
| 397 | o Many mixer updates
|
|---|
| 398 |
|
|---|
| 399 | 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 400 | - WINMM: o More mixer updates (not yet finished)
|
|---|
| 401 |
|
|---|
| 402 | 2002-05-23: Yuri Dario <mc6530@mclink.it>
|
|---|
| 403 | - USER32: o Don't beep when unable to find menu item when alt key pressed
|
|---|
| 404 |
|
|---|
| 405 | 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 406 | - WINMM: o Mixer updates (not yet finished)
|
|---|
| 407 |
|
|---|
| 408 | 2002-05-23: Platon Fomichev <platon@innotek.de>
|
|---|
| 409 | - USER32: o Keyboard fixes for right alt & right shift
|
|---|
| 410 |
|
|---|
| 411 | 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 412 | - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
|
|---|
| 413 | (fixes RealPlayer (PostThreadMessage))
|
|---|
| 414 | - WINMM: o Added debug wrappers
|
|---|
| 415 | o Started with mixer api rewrite
|
|---|
| 416 |
|
|---|
| 417 | 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 418 | - KERNEL32: o Round stack top & bottom (TIB) to page boundary
|
|---|
| 419 |
|
|---|
| 420 | 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 421 | - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
|
|---|
| 422 | since a dll that depends on dlls with an exitlist handler
|
|---|
| 423 | doesn't get properly unloaded (initterm not called for unload
|
|---|
| 424 | nor for a 2nd load)
|
|---|
| 425 |
|
|---|
| 426 | 2002-05-20: Dmitry Froloff <froloff@os2.ru>
|
|---|
| 427 | - KERNEL32: o Removed 64 MB memory mapped file limit
|
|---|
| 428 | o Fix for opening memory mapped file with size larger than
|
|---|
| 429 | the file size
|
|---|
| 430 |
|
|---|
| 431 | 2002-05-17: Platon Fomichev <platon@innotek.de>
|
|---|
| 432 | - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
|
|---|
| 433 | if window is not visible (fixes endless loop in
|
|---|
| 434 | property sheet when switching page with keyboard)
|
|---|
| 435 |
|
|---|
| 436 | 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 437 | - OLEAUT32: o Resync with latest Wine
|
|---|
| 438 | - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
|
|---|
| 439 | (IOCTL_CDROM_CURRENT_POSITION only)
|
|---|
| 440 | o IOCTL_CDROM_READ_TOC fix
|
|---|
| 441 |
|
|---|
| 442 | 2002-05-16: knut st. osmundsen <bird@anduin.net>
|
|---|
| 443 | - MAKE: o Merged in latest changes.
|
|---|
| 444 | o Create NewConfigure.cmd for this environment.
|
|---|
| 445 | Try NewConfigure.cmd -? first.
|
|---|
| 446 | (Do 'nmake needed' before calling this. (stupid!))
|
|---|
| 447 | o Please note that this is still not 100% configured for
|
|---|
| 448 | Odin32 yet. But eventually it will replace the existing
|
|---|
| 449 | make system.
|
|---|
| 450 |
|
|---|
| 451 | 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 452 | - NTDLL: o Partial resync with Wine
|
|---|
| 453 | - KERNEL32: o Export some functions for NTDLL
|
|---|
| 454 | o Fixed creation of logfile for executables on readonly volumes
|
|---|
| 455 | o RegQueryInfoKeyW fix
|
|---|
| 456 | o TLS fix for pe2lx images
|
|---|
| 457 | - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
|
|---|
| 458 | SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
|
|---|
| 459 | SystemParametersInfoA parameters
|
|---|
| 460 | - OLE32: o Resync with latest Wine
|
|---|
| 461 |
|
|---|
| 462 | 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 463 | - DINPUT: o Made mouse code reentrant
|
|---|
| 464 | - GDI32: o Fix for EnumFontFamiliesA/W
|
|---|
| 465 | - SETUPAPI: o Resync with latest Wine
|
|---|
| 466 |
|
|---|
| 467 | 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 468 | - KERNEL32: o CustForce2GBFileSize function added to force
|
|---|
| 469 | GetVolumeInformation to tell the app all partitions are FAT
|
|---|
| 470 | (2 GB file size limitation)
|
|---|
| 471 | - COMCTL32: o Merged property sheet control with latest Wine version
|
|---|
| 472 |
|
|---|
| 473 | 2002-05-14: Platon Fomichev <platon@innotek.de>
|
|---|
| 474 | - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
|
|---|
| 475 | SWP_FOCUS(DE)ACTIVATE message.
|
|---|
| 476 |
|
|---|
| 477 | 2002-05-10: Platon Fomichev <platon@innotek.de>
|
|---|
| 478 | - KERNEL32: o Parallel port updates (use resource manager to query
|
|---|
| 479 | hardware configuration)
|
|---|
| 480 |
|
|---|
| 481 | 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 482 | - KERNEL32: o Applications are now allowed to read physical disks or
|
|---|
| 483 | mounted partitions. Write access is only allowed for
|
|---|
| 484 | unmounted partitions or floppy disks.
|
|---|
| 485 | o Implemented GetFileSize for disk objects; corrected
|
|---|
| 486 | return value for some failures (-1)
|
|---|
| 487 |
|
|---|
| 488 | 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 489 | - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
|
|---|
| 490 | IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
|
|---|
| 491 | o Implemented GetVolumeNameForVolumeMountPointA/W for disk
|
|---|
| 492 | mountpoints (e.g. C:\)
|
|---|
| 493 | o Rewrote FindFirst/NextVolume to use LVM interface (if
|
|---|
| 494 | availabe; else fail)
|
|---|
| 495 | o Extended GetDriveType & GetVolumeInformation for volume
|
|---|
| 496 | names (instead of only disk names (e.g. C:\))
|
|---|
| 497 | o GetVolumeInformation change: keep file system name if
|
|---|
| 498 | NTFS or FAT32
|
|---|
| 499 | o Implemented unmounted volume and physical disk access
|
|---|
| 500 |
|
|---|
| 501 | 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 502 | - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
|
|---|
| 503 | toolbar, tab, pager, nativefont, imagelist code
|
|---|
| 504 | o Updated license (LGPL) for comctl32
|
|---|
| 505 | - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
|
|---|
| 506 | in NTDLL)
|
|---|
| 507 | - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
|
|---|
| 508 | - KERNEL32: o Implemented volume & volume mountpoint functions
|
|---|
| 509 | (win2k and up)
|
|---|
| 510 | o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
|
|---|
| 511 | IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
|
|---|
| 512 |
|
|---|
| 513 | 2002-05-08: Platon Fomichev <platon@innotek.de>
|
|---|
| 514 | - COMCTL32: o Merged listview control with latest Wine
|
|---|
| 515 |
|
|---|
| 516 | 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 517 | - USER32: o WH_MOUSE_LL hook fixes
|
|---|
| 518 |
|
|---|
| 519 | 2002-05-07: Platon Fomichev <platon@innotek.de>
|
|---|
| 520 | - USER32: o Listbox/combobox fix for MFC apps
|
|---|
| 521 | o SetParent doesn't change WS_CHILD style
|
|---|
| 522 | o Experimental change for getParent
|
|---|
| 523 |
|
|---|
| 524 | 2002-05-07: knut st. osmundsen <bird@anduin.net>
|
|---|
| 525 | - CmdQd: o The daemon shouldn't inherit standard handles when started.
|
|---|
| 526 | (Hung the daily build, since we use tee to do logging.)
|
|---|
| 527 |
|
|---|
| 528 | 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 529 | - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
|
|---|
| 530 |
|
|---|
| 531 | 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 532 | - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
|
|---|
| 533 | translation array
|
|---|
| 534 |
|
|---|