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