| [8959] | 1 | /* $Id: changelog,v 1.2245 2002-08-05 09:45:22 sandervl Exp $ */
|
|---|
| [7715] | 2 |
|
|---|
| [8959] | 3 | 2002-08-05: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 4 | - USER32: o MsgWaitForMultipleObjects changes; check objects before
|
|---|
| 5 | message queue status
|
|---|
| 6 |
|
|---|
| [8957] | 7 | 2002-08-04: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 8 | - KERNEL32: o Return ERROR_OPERATION_ABORTED in GetOverlappedResult if
|
|---|
| 9 | request was cancelled
|
|---|
| 10 |
|
|---|
| [8950] | 11 | 2002-08-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 12 | - WINMM: o Keep filling DART buffers during WaveOutWrite until there's
|
|---|
| 13 | no more room.
|
|---|
| 14 | o Fill DART buffers during resume
|
|---|
| 15 | - KERNEL32: o Create event semaphore during TEB setup. Used for
|
|---|
| 16 | Post(Thread)Message in combination with MsgWaitForMultipleObjects
|
|---|
| 17 | - USER32: o MsgWaitForMultipleObjects; change for waiting for object &
|
|---|
| 18 | message (timeout != 0, fWaitAll == FALSE, nCount > 0)
|
|---|
| 19 | If dwWakeMsg & QS_POSTMESSAGE, also wait for post msg event
|
|---|
| 20 | semaphore.
|
|---|
| 21 | o Signal post message event semaphore in PostMessageA/W &
|
|---|
| 22 | PostThreadMessage
|
|---|
| 23 |
|
|---|
| [8946] | 24 | 2002-07-31: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 25 | - WINMM: o Custom build function SetFixedWaveBufferSize added
|
|---|
| 26 | (Call to tell winmm to expect simple fixed size buffers, so
|
|---|
| 27 | it doesn't have to use very small DART buffers; this will
|
|---|
| 28 | only work in very specific cases; it is not a good general
|
|---|
| 29 | purpose solution)
|
|---|
| [8948] | 30 | - USER32: o Fixed MsgWaitForMultipleObjects implementation. Now returns
|
|---|
| 31 | on arrival of proper window message. (previously only
|
|---|
| 32 | for sent messages; it should also support posted msgs)
|
|---|
| [8946] | 33 |
|
|---|
| [8936] | 34 | 2002-07-30: Platon Fomichev <platon@innotek.de>
|
|---|
| [8937] | 35 | - KERNEL32: o Unicode update
|
|---|
| [8936] | 36 |
|
|---|
| [8932] | 37 | 2002-07-29: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 38 | - GDI32: o Cleanup fixes (call ctordtorTerm in existlist handler)
|
|---|
| 39 |
|
|---|
| [8928] | 40 | 2002-07-28: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 41 | - KERNEL32: o Added function to disable os2cdrom.dmd aspi support
|
|---|
| [8930] | 42 | - WNASPI32: o Fixes for cdrom drive/burner recognition
|
|---|
| [8928] | 43 |
|
|---|
| [8924] | 44 | 2002-07-26: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 45 | - KERNEL32: o Keep suspend count per thread (Suspend/ResumeThread)
|
|---|
| 46 | o Detach all dlls (LIFO order) before really unloading them; this
|
|---|
| 47 | should take care of circular dependencies (crash while accessing
|
|---|
| 48 | memory of a dll that has just been freed)
|
|---|
| 49 | o Terminated & Resume suspended threads in ExitProcess to
|
|---|
| 50 | prevent the process from getting stuck in the exitlist handler.
|
|---|
| 51 | (OS/2 is allergic to suspended threads)
|
|---|
| 52 | o Terminate thread when exception occurs after ExitProcess
|
|---|
| 53 | o Protect larger part of on-demand page load handler
|
|---|
| 54 | (DosEnterCritSec)
|
|---|
| [8926] | 55 | - IPHLPAPI: o Use gethostname from wsock32, not the OS/2 version
|
|---|
| [8924] | 56 |
|
|---|
| [8915] | 57 | 2002-07-24: Platon Fomichev <platon@innotek.de>
|
|---|
| 58 | - USER32: o Pass on WM_PAINT of client window to default PM handler
|
|---|
| 59 | if window is minimized
|
|---|
| 60 | (fixes possible endless loop of WM_PAINT messages when
|
|---|
| 61 | minimizing a window)
|
|---|
| 62 |
|
|---|
| [8909] | 63 | 2002-07-23: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 64 | - KERNEL32: o Enhanced CreateWin32PeLdrExe
|
|---|
| [8912] | 65 | o Enhanced PE loader class to support files with PE image
|
|---|
| 66 | starting at an offset != 0 (custom build)
|
|---|
| 67 | o Fixes for memory map view with offset
|
|---|
| [8909] | 68 | - PELDR: o Modified for new CreateWin32PeLdrExe
|
|---|
| 69 |
|
|---|
| [8905] | 70 | 2002-07-22: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 71 | - GDI32: o Check delete flag in DeleteObject. WGSS doesn't do it for us.
|
|---|
| 72 |
|
|---|
| [8897] | 73 | 2002-07-21: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 74 | - KERNEL32: o Use shared memory in high region (> 512MB) if available
|
|---|
| 75 | o Interface changes for shared memory allocation
|
|---|
| 76 |
|
|---|
| [8893] | 77 | 2002-07-19: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8894] | 78 | - ODINCRT: o Dos*CriticalSection fixes
|
|---|
| [8893] | 79 |
|
|---|
| [8881] | 80 | 2002-07-16: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 81 | - KERNEL32: o Fix for loading PE images in low memory (introduced yesterday)
|
|---|
| 82 |
|
|---|
| [8869] | 83 | 2002-07-15: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 84 | - GDI32: o Graphics handle management updates
|
|---|
| 85 | o Mark bitmaps as RGB565 if necessary (CreateCompatibleBitmap,
|
|---|
| 86 | CreateDIBitmap)
|
|---|
| 87 | o DEFAULT_GUI_FONT is a system object (applications are not allowed
|
|---|
| 88 | to delete it)
|
|---|
| [8879] | 89 | o Dynamically allocate GDI handle array to prevent waste of
|
|---|
| 90 | shared memory (as it is a private array)
|
|---|
| [8869] | 91 | - USER32: o Updates for new handle management
|
|---|
| 92 | o System pens & brushes can't be deleted by applications
|
|---|
| [8876] | 93 | - KERNEL32: o Rewrote algorithm for 64kb alignment in VirtualAlloc'ed memory
|
|---|
| 94 | o Allocate fake PE headers in high memory
|
|---|
| 95 | o Allocate win32 & code heap memory in 64kb chunks
|
|---|
| 96 | o Allocate PE image memory at 64kb boundary
|
|---|
| [8879] | 97 | o Dynamically allocate handlemanager array to prevent waste of
|
|---|
| 98 | shared memory (as it is a private array (for now))
|
|---|
| [8869] | 99 |
|
|---|
| [8862] | 100 | 2002-07-13: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 101 | - KERNEL32: o We do NOT want to use any win32k services with custom builds
|
|---|
| [8865] | 102 | o Disabled 64kb alignment in VirtualAlloc for now
|
|---|
| [8867] | 103 | (algorithm lead to infinite recursion on SMP kernels,
|
|---|
| 104 | pending a better algorithm)
|
|---|
| [8862] | 105 |
|
|---|
| [8860] | 106 | 2002-07-12: Platon Fomichev <platon@innotek.de>
|
|---|
| 107 | - USER32: o Close menu when RMB is pressed outside menu window
|
|---|
| 108 |
|
|---|
| [8856] | 109 | 2002-07-12: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 110 | - WINMM: o Changed init order; do not check for MMPM2 presence if
|
|---|
| 111 | wave audio was already disabled
|
|---|
| 112 | o Minor cleanup for mixer code
|
|---|
| [8859] | 113 | o Touch GETAPIMAP array to force OS/2 to make it valid; some
|
|---|
| 114 | braindead audio drivers do not check pointers.
|
|---|
| [8856] | 115 |
|
|---|
| [8851] | 116 | 2002-07-11: Platon Fomichev <platon@innotek.de>
|
|---|
| 117 | - COMCTL32: o Listview: clear background for area without items (ownerdrawn)
|
|---|
| [8854] | 118 | - USER32: o OSLibWinShowTaskList must query task list window
|
|---|
| 119 | handle from OS/2 and not assume a constant handle value
|
|---|
| [8851] | 120 |
|
|---|
| [8845] | 121 | 2002-07-08: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 122 | - USER32: o Changed SetFocus fix; only disallow focus change for minimized
|
|---|
| 123 | and disabled windows.
|
|---|
| [8850] | 124 | o Put back focus fix from 2001-11-20
|
|---|
| [8845] | 125 |
|
|---|
| [8843] | 126 | 2002-07-06: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 127 | - KERNEL32: o Com overlapped IO changes for reference counts
|
|---|
| 128 |
|
|---|
| [8841] | 129 | 2002-07-05: Platon Fomichev <platon@innotek.de>
|
|---|
| 130 | - USER32: o SetFocus not allowed on invisible windows
|
|---|
| 131 |
|
|---|
| [8832] | 132 | 2002-07-05: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8837] | 133 | - KERNEL32: o Dump exception log to except.log in system32 directory
|
|---|
| [8832] | 134 | o Added functions to customize logging (filename +
|
|---|
| 135 | enable/disable
|
|---|
| [8837] | 136 | o Keep reference count for overlapped IO objects to avoid
|
|---|
| 137 | premature destruction
|
|---|
| [8832] | 138 |
|
|---|
| [8827] | 139 | 2002-07-03: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 140 | - WS2_32: o Added WSASendDisconnect stub
|
|---|
| [8829] | 141 | - DDRAW: o MoveRect fixes (src & dest surfaces the same + overlap)
|
|---|
| 142 | o Fill fixes for single lines (horizontal & vertical)
|
|---|
| 143 | o Optimized 8, 16 & 32bpp Fills
|
|---|
| [8827] | 144 |
|
|---|
| [8820] | 145 | 2002-07-02: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 146 | - DDRAW: o Removed RGB555->565 conversion in Fill16on16 & SurfReleaseDC
|
|---|
| 147 | (problem located in GDI32)
|
|---|
| 148 |
|
|---|
| 149 | 2002-07-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8811] | 150 | - USER32: o Translate & dispatch unprocessed messages in IsDialogMessageA/W
|
|---|
| 151 | (Wine doesn't do this, but experiments in Windows 2000 show
|
|---|
| 152 | different behaviour)
|
|---|
| [8813] | 153 | o Edit control: don't beep when receiving Enter (single line
|
|---|
| 154 | control)
|
|---|
| [8815] | 155 | - DDRAW: o Color fill bugfixes:
|
|---|
| 156 | - fill up to height, not height - 1
|
|---|
| 157 | - check for single pixel line fills -> avoid heap corruption
|
|---|
| [8819] | 158 | o Enabled support for 16 & 32 bpp bitmaps in SurfGetDC
|
|---|
| 159 | o SurfReleaseDC; initialize BITMAPINFO structure properly
|
|---|
| 160 | before calling GetDIBits + fix for 16 bpp GetDIBits
|
|---|
| 161 | (which always returns data in RGB555 format in our case)
|
|---|
| 162 | o Fill16on16: convert RGB555 color value to RGB565
|
|---|
| 163 | o Mark surface as changed (ChangeUniquenessValue) after
|
|---|
| 164 | blit & fill
|
|---|
| 165 | - KERNEL32: o Print win32 module name when exception occurs
|
|---|
| [8811] | 166 |
|
|---|
| 167 | 2002-06-30: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8805] | 168 | - KERNEL32: o WriteFile for standard out: convert line feed without
|
|---|
| 169 | carriage return into CR+LF
|
|---|
| [8808] | 170 | o VirtualFree; don't allow app to decommit stack pages
|
|---|
| 171 | (VAC runtime uses last stack page to store some internal
|
|---|
| 172 | data; if freed pe/pec will crash during exit)
|
|---|
| [8805] | 173 |
|
|---|
| [8796] | 174 | 2002-06-28: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 175 | - USER32: o Removed focus fix from 2001-11-20; controls of child
|
|---|
| 176 | dialogs can receive input focus (CVP wizard dialogs)
|
|---|
| [8798] | 177 | o Only call ProcessKbdHook from PeekMessage if PM_REMOVE
|
|---|
| 178 | flag is set (otherwise the hook will be called twice)
|
|---|
| 179 | o Call message filter hook in IsDialogMessageA/W
|
|---|
| 180 | - DOC: o Odin.ini.txt -> Version=NT40 for Windows NT 4 (not NT4)
|
|---|
| [8796] | 181 |
|
|---|
| [8793] | 182 | 2002-06-27: Platon Fomichev <platon@innotek.de>
|
|---|
| 183 | - SHELL32: o Enable OK button before sending BFFM_SELCHANGED (apparently
|
|---|
| 184 | done in windows)
|
|---|
| 185 |
|
|---|
| [8791] | 186 | 2002-06-27: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 187 | - COMDLG32: o Only switch directory when the path returned by SHGetPathFromIDListA
|
|---|
| 188 | is valid. (COMDLG32_UpdateCurrentDir)
|
|---|
| 189 | (fixes crash in file dialog when double clicking on abstract
|
|---|
| 190 | objects like 'My Computer')
|
|---|
| 191 |
|
|---|
| [8778] | 192 | 2002-06-26: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 193 | - KERNEL32: o There are no bugs in the WGSS SystemTimeToFileTime &
|
|---|
| 194 | DosDateTimeToFileTime functions;
|
|---|
| 195 | Real problem lies in the fact that the times returned
|
|---|
| 196 | by DosFindFirst, DosFindNext, DosQueryPathInfo &
|
|---|
| 197 | DosQueryFileInfo are in local time; we must convert them
|
|---|
| 198 | to file time (UTC)
|
|---|
| [8781] | 199 | o Fixed bug in OSLibGetDriveType; broke GetDriveType for
|
|---|
| 200 | floppy drives
|
|---|
| 201 | o Fixed CreateFile for disks
|
|---|
| [8786] | 202 | o made IOCTL_DISK_GET_DRIVE_GEOMETRY a seperate case; should
|
|---|
| 203 | fail if no disk present or when the media has been changed
|
|---|
| 204 | o IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES should
|
|---|
| 205 | always succeed
|
|---|
| 206 | o Don't fail CreateFile for disk when DosOpen fails with
|
|---|
| 207 | a sharing violation. Apparently this is allowed in windows;
|
|---|
| 208 | although you can't do much with the handle. (limited to
|
|---|
| 209 | IOCTL_STORAGE_GET_MEDIA_TYPES/IOCTL_DISK_GET_MEDIA_TYPES)
|
|---|
| [8778] | 210 |
|
|---|
| [8776] | 211 | 2002-06-26: knut st. osmundsen <bird@anduin.net>
|
|---|
| 212 | - KERNEL32\testcase:
|
|---|
| 213 | o Added testcase for Test of SetConsoleCtrlHandler() and
|
|---|
| 214 | GenerateConsoleCtrlEvent().
|
|---|
| 215 | Note. The last part of it is known to fail since the
|
|---|
| 216 | functions aren't 100% implemented yet.
|
|---|
| 217 | o Added mini testcase for MultiByteToWideChar().
|
|---|
| 218 | o Use the testsuite tools for unit testcases too.
|
|---|
| 219 | - KERNEL32: o Partial implementation of Console Ctrl Handlers.
|
|---|
| 220 | (Ctrl-Break and Ctrl-C)
|
|---|
| 221 | o GetFileType on std files doesn't always return TYPE_CHAR.
|
|---|
| 222 | Ask what kind of filehandle we have.
|
|---|
| 223 | (Solves 'press key' problem with "wcc386.exe > file".)
|
|---|
| 224 | o Enable writing to STDERR. (This might have brought into
|
|---|
| 225 | light a redirection problem.)
|
|---|
| 226 |
|
|---|
| [8761] | 227 | 2002-06-25: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 228 | - KERNEL32: o RegQueryValueExA(/W) fix for querying the length of string
|
|---|
| 229 | key data; registry.dll returns the wrong value (too big;
|
|---|
| 230 | appears size of internal storage)
|
|---|
| [8764] | 231 | o FileTimeToSystemTime fix (no problems with WGSS implementation)
|
|---|
| [8767] | 232 | o Removed bad unicode change
|
|---|
| [8761] | 233 |
|
|---|
| [8749] | 234 | 2002-06-25: knut st. osmundsen <bird@anduin.net>
|
|---|
| [8761] | 235 | - UNICODE: o Fancy 16 step fallthru case isn't cool if the src length
|
|---|
| 236 | is bad.
|
|---|
| 237 | - SHELL32: o Bad linked list walking. (accessed node after free)
|
|---|
| 238 | - USER32: o Allocate space the two missing RGB2 entries.
|
|---|
| 239 | o Use "%.*s" and "%.*ls" when we have a string with a length.
|
|---|
| 240 | (Crashing in logging is awfull. Creates zombies!)
|
|---|
| 241 | - ODINCRT: o Reserve low 32MB of address space before initializing
|
|---|
| 242 | the CRT IF we compile with the debug heap (kLib).
|
|---|
| [8749] | 243 |
|
|---|
| [8748] | 244 | 2002-06-24: knut st. osmundsen <bird@anduin.net>
|
|---|
| 245 | - Testsuite:
|
|---|
| 246 | o Most of the watcom case done and working.
|
|---|
| 247 | - Make: o Corrected LIB paths of the win32 watcom setup.
|
|---|
| 248 |
|
|---|
| [8742] | 249 | 2002-06-21: knut st. osmundsen <bird@anduin.net>
|
|---|
| 250 | - KERNEL32: o LCMapStringW fix
|
|---|
| 251 |
|
|---|
| [8738] | 252 | 2002-06-20: Platon Fomichev <platon@innotek.de>
|
|---|
| 253 | - COMCTL32: o Don't erase background for ownerdrawn listview controls
|
|---|
| 254 | (LISTVIEW_RefreshReport)
|
|---|
| 255 |
|
|---|
| [8732] | 256 | 2002-06-20: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 257 | - OLE32: o Drag 'n drop fix
|
|---|
| 258 | - USER32: o Drag 'n drop fix
|
|---|
| 259 | o Enabled drag 'n drop again
|
|---|
| [8737] | 260 | o Added DisableDragDrop
|
|---|
| [8732] | 261 |
|
|---|
| [8726] | 262 | 2002-06-20: knut st. osmundsen <bird@anduin.net>
|
|---|
| 263 | - INSTALL: o Corrected quoting typos. ('User's Guide' -> 'User''s Guide')
|
|---|
| [8731] | 264 | - Tools: o Added ExecTestcase.cmd for executing a testing and do
|
|---|
| 265 | result logging.
|
|---|
| 266 | - Make: o Added TS_EXEC* and TS_LOGFILE macros to testsuite.tools.mk.
|
|---|
| 267 | - Testsuite:
|
|---|
| 268 | o Use ExecTestcase.cmd for executing the testcases.
|
|---|
| 269 | Logging & execute all testcases nomatter return values.
|
|---|
| 270 | o Added watcomc.mak which is pretty simple watcom tests.
|
|---|
| 271 | (currently noone of them really work 100%.)
|
|---|
| 272 | o TODO: Make a timeout executer which kills the children when
|
|---|
| 273 | they've been executing too long. This is required in order to
|
|---|
| 274 | run the testsuite without human interaction.
|
|---|
| [8726] | 275 |
|
|---|
| [8719] | 276 | 2002-06-19: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 277 | - OLE32: o Drag 'n drop fixes
|
|---|
| [8726] | 278 |
|
|---|
| [8719] | 279 | 2002-06-18: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 280 | - DINPUT: o SysMouseAImpl_GetDeviceData: check if internal dinput
|
|---|
| 281 | mouse state is out of sync and update if necessary
|
|---|
| 282 |
|
|---|
| [8704] | 283 | 2002-06-18: knut st. osmundsen <bird@anduin.net>
|
|---|
| 284 | - Win32k: o Fixed compiler warning which caused the M$ compiler
|
|---|
| 285 | to choke on some systems.
|
|---|
| [8718] | 286 | - Testsuite:
|
|---|
| 287 | o A collection of testcases running real win32 apps.
|
|---|
| 288 | Not finished, just an idea currently, intended for
|
|---|
| 289 | testing odin releases and changes.
|
|---|
| 290 | Currently limiting ourselfs to CUI progs.
|
|---|
| 291 | o A simple DoxyGen testcase is checked in.
|
|---|
| 292 | o Read the micro howto in testsuite/Makefile.
|
|---|
| 293 | - Make: o Synced with outside world. (NMAKE5 changes mostly.)
|
|---|
| 294 | o Added support for TARGET_MODE = TESTCASE.
|
|---|
| 295 | o Added separate tools file for the testsuite.
|
|---|
| [8704] | 296 |
|
|---|
| [8701] | 297 | 2002-06-17: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 298 | - USER32: o Disabled drag 'n drop temporarily (not yet stable)
|
|---|
| 299 |
|
|---|
| [8692] | 300 | 2002-06-16: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 301 | - KERNEL32: o Expand string when converting REG_EXPAND_SZ to REG_SZ
|
|---|
| 302 | o Removed: LoadLibraryExA: expand library filename
|
|---|
| 303 | (doesn't happen in Windows)
|
|---|
| [8695] | 304 | - INSTALL: o Create object for Odin User's Manual + fixed object
|
|---|
| 305 | creation for OdinBug Manual
|
|---|
| 306 | o Include OdinBug.HLP & OdinUser.INF
|
|---|
| [8698] | 307 | - SHELL32: o Fixed desktop object creation during win32 app install
|
|---|
| [8692] | 308 |
|
|---|
| [8664] | 309 | 2002-06-15: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8668] | 310 | - SETUPAPI: o Wine resync + added debug wrappers
|
|---|
| [8673] | 311 | - KERNEL32: o Added strtolW & strtoulW from Wine/X11 (for setupapi)
|
|---|
| [8674] | 312 | o Check for NULL parameters in GetFullPathNameW
|
|---|
| [8684] | 313 | o hmfile.cpp: ParsePath fix; check boundary
|
|---|
| 314 | o LoadLibraryExA: expand library filename; might contain
|
|---|
| 315 | environment variables
|
|---|
| [8704] | 316 | o RegSetValueExA: translate REG_EXPAND_SZ into REG_SZ;
|
|---|
| [8688] | 317 | registry.dll doesn't like this type for some reason
|
|---|
| [8684] | 318 | - USER32: o Do proper filtering for PeekMessage
|
|---|
| [8671] | 319 | - NTDLL: o Forward heap functions to kernel32
|
|---|
| [8676] | 320 | - QUARTZ: o Removed old code (stub dll now)
|
|---|
| [8678] | 321 | - AVIFIL32: o Resync with Wine
|
|---|
| [8682] | 322 | - INSTALL: o Add MS Shell Dlg->WarpSans font conversion
|
|---|
| [8664] | 323 |
|
|---|
| [8655] | 324 | 2002-06-13: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 325 | - USER32: o SetCustomWndHandleSemName added to override shared semaphore
|
|---|
| [8704] | 326 | name used to synchronize global window handle array access
|
|---|
| [8655] | 327 | (to avoid name clash with Odin)
|
|---|
| [8657] | 328 | - KERNEL32: o SetCustomMMapSemName added to override shared semaphore
|
|---|
| [8704] | 329 | name used to synchronize global memory map list access
|
|---|
| [8657] | 330 | (to avoid name clash with Odin)
|
|---|
| [8655] | 331 |
|
|---|
| [8653] | 332 | 2002-06-13: Platon Fomichev <platon@innotek.de>
|
|---|
| 333 | - USER32: o Only minimize or maximize window if appropriate style flag set
|
|---|
| 334 |
|
|---|
| [8651] | 335 | 2002-06-12: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8704] | 336 | - KERNEL32: o If bytes present in COM device buffer, read them directly;
|
|---|
| [8651] | 337 | even for overlapped IO calls.
|
|---|
| 338 |
|
|---|
| [8649] | 339 | 2002-06-11: Platon Fomichev <platon@innotek.de>
|
|---|
| 340 | - SHELL32: o Ignore name changes for 'My Computer' and other non-file
|
|---|
| 341 | objects (file dialogs)
|
|---|
| 342 |
|
|---|
| [8646] | 343 | 2002-06-11: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8641] | 344 | - OLEAUT32, SHELL32:
|
|---|
| 345 | o Some Wine updates
|
|---|
| [8643] | 346 | - KERNEL32: o Overlapped IO bugfixes
|
|---|
| [8704] | 347 | o Thread TEB linking bugfix
|
|---|
| [8646] | 348 | o Setup TEB structure before creating thread. Otherwise it's
|
|---|
| 349 | created too late and thread functions called by the app
|
|---|
| 350 | right after thread creation will fail.(e.g. SetThreadPriority)
|
|---|
| [8641] | 351 |
|
|---|
| [8635] | 352 | 2002-06-10: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
|
|---|
| 353 | - TOOLS\ODINBUG:
|
|---|
| 354 | o Added VX-REXX sources for OdinBug
|
|---|
| 355 | - DOC: o OdinBug.HLP update
|
|---|
| 356 | - BIN: o OdinBug.exe update
|
|---|
| 357 |
|
|---|
| [8630] | 358 | 2002-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 359 | - OLE32: o Fixed bug in StgStreamImpl_Seek
|
|---|
| 360 | - USER32: o Don't repaint groupbox in WM_SETFONT if control isn't visible
|
|---|
| 361 | (fixes crash in Java 1.4 install)
|
|---|
| [8637] | 362 | - KERNEL32: o Don't use user supplied pointers in ReadFile/WriteFile for
|
|---|
| 363 | overlapped IO
|
|---|
| [8630] | 364 |
|
|---|
| [8618] | 365 | 2002-06-09: knut st. osmundsen <bird@anduin.net>
|
|---|
| 366 | - Makefiles:
|
|---|
| 367 | o Exclude dummy.c from the dependencies.
|
|---|
| 368 |
|
|---|
| [8615] | 369 | 2002-06-09: Herwig Bauernfeind <herwig.bauernfeind@aon.at>
|
|---|
| 370 | - KERNEL32: o Corrections for Austrian NLS file
|
|---|
| 371 |
|
|---|
| [8606] | 372 | 2002-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 373 | - USER32: o SendMessageTimeoutA/W fixes for inter-process/thread message
|
|---|
| 374 | communication
|
|---|
| 375 | (fixes OpenOffice 1.0 crash during install (at 76%))
|
|---|
| [8615] | 376 | o Skip window handle 0x68000000 (otherwise more difficult
|
|---|
| 377 | to compare logs with old builds)
|
|---|
| [8622] | 378 | o Logging changes for comparing source file names
|
|---|
| [8623] | 379 | o WS_CHILD style change in SetWindowLong (GWL_STYLE) *is* allowed
|
|---|
| 380 | (fixes Java 1.4 installation (first dialog))
|
|---|
| [8610] | 381 | - COMDLG32: o GetFileDialog95W fix (check if template name is string or
|
|---|
| 382 | numeric id)
|
|---|
| 383 | (fixes OpenOffice 1.0 file open dialog crash)
|
|---|
| [8606] | 384 | - WININET: o Fixed shlwapi imports
|
|---|
| [8619] | 385 | - OLE32: o Resync with latest Wine
|
|---|
| [8622] | 386 | - OLEAUT32: o Resync with latest Wine
|
|---|
| [8606] | 387 |
|
|---|
| [8598] | 388 | 2002-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| [8595] | 389 | - SHELL32: o Moved resource files to subdir
|
|---|
| 390 | - COMDLG32: o Compile fix + moved resource files to subdir
|
|---|
| [8598] | 391 | - KERNEL32: o Export OSLibDosDevIOCtl
|
|---|
| 392 | - WNASPI32: o Use ASPI interface in os2cdrom.dmd instead of aspirout
|
|---|
| 393 | (requires os2cdrom.dmd from Convenience Pack 2, IDEDASD
|
|---|
| 394 | package from May 2001 (or newer) or recent JJSCDROM)
|
|---|
| 395 | - DDRAW: o Fixed clipping bug with non-frame windows
|
|---|
| [8603] | 396 | o Print FOURCCs supported by Dive
|
|---|
| [8595] | 397 |
|
|---|
| [8618] | 398 | 2002-06-08: knut *st. osmundsen <bird@anduin.net>
|
|---|
| [8597] | 399 | - TOOLS\WRC:o Compile fix
|
|---|
| 400 |
|
|---|
| [8592] | 401 | 2002-06-07: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 402 | - SHLWAPI: o Resync with latest Wine & added LGPL license
|
|---|
| 403 | - SHELL32: o Some updates for upcoming resync
|
|---|
| 404 |
|
|---|
| [8590] | 405 | 2002-06-06: knut st. osmundsen <bird@anduin.net>
|
|---|
| [8591] | 406 | - KERNEL32: o Made winimagepe2lx.cpp compilable with toolkit 4.5.0.
|
|---|
| [8590] | 407 |
|
|---|
| [8581] | 408 | 2002-06-06: Mark Paulus <mark.paulus@wcom.com>
|
|---|
| [8590] | 409 | - KERNEL32: o OSLibDosCreateFile: Fix a SYS0005 (Access Denied) when
|
|---|
| [8581] | 410 | opening an existing file
|
|---|
| 411 |
|
|---|
| [8578] | 412 | 2002-06-06: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 413 | - KERNEL32: o Use aspi interface in os2cdrom.dmd for SCSI ioctls
|
|---|
| 414 |
|
|---|
| [8576] | 415 | 2002-06-06: Platon Fomichev <platon@innotek.de>
|
|---|
| 416 | - SHELL32: o Always expand root when initializing treeview
|
|---|
| 417 | o Do not sort tree in TVN_ITEMEXPANDINGA
|
|---|
| 418 |
|
|---|
| [8569] | 419 | 2002-06-05: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 420 | - WINMM: o Put back original DART buffer size selection code
|
|---|
| 421 | (new one messes up e.g. RealPlayer)
|
|---|
| [8571] | 422 | o Postpone recording when waveInStart called without
|
|---|
| 423 | any buffers in the queue. Start in during next
|
|---|
| 424 | waveInAddBuffer call.
|
|---|
| [8573] | 425 | o Fixed DART waveout resume
|
|---|
| [8569] | 426 |
|
|---|
| [8565] | 427 | 2002-06-04: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 428 | - USER32: o Fix for AltGr key combinations
|
|---|
| [8567] | 429 | - WINMM: o Updates for wave playback
|
|---|
| [8565] | 430 |
|
|---|
| [8554] | 431 | 2002-06-03: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 432 | - USER32, OLE32:
|
|---|
| 433 | o Drag and drop fixes
|
|---|
| [8561] | 434 | - BIN\ODINBUG:
|
|---|
| 435 | o Update by Herwig Bauernfeind (0.5.6a)
|
|---|
| 436 | - DOC\MANUAL:
|
|---|
| 437 | o Users manual sources by Herwig Bauernfeind
|
|---|
| 438 | - DOC: o Added odinuser.inf by Herwig Bauernfeind
|
|---|
| [8554] | 439 |
|
|---|
| [8546] | 440 | 2002-06-02: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 441 | - USER32\CONTROLS:
|
|---|
| 442 | o New dll for user32 controls (latest Wine)
|
|---|
| 443 | (not activated, not finished (resync))
|
|---|
| 444 | - USER32: o Moved drag & drop code to seperate file
|
|---|
| [8550] | 445 | o Updates for OLE drag 'n drop
|
|---|
| [8549] | 446 | - KERNEL32: o LogException: check lockcount before changing it on entry
|
|---|
| [8547] | 447 | (it is not always > 0 -> previously caused hang in exception
|
|---|
| 448 | handler (zombie process))
|
|---|
| [8550] | 449 | - SHELL32: o Added automatic asii/unicode conversion to DragQueryFileA/W
|
|---|
| 450 | - OLE32: o Implemented OLE drag and drop (WPS -> Odin app)
|
|---|
| 451 | (todo: Odin app -> WPS)
|
|---|
| [8546] | 452 |
|
|---|
| [8536] | 453 | 2002-06-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 454 | - SHELL32: o IShellFolder_fnCompareIDs shortcut added to improve
|
|---|
| 455 | performance
|
|---|
| [8538] | 456 | o DragQueryFileW fix
|
|---|
| 457 | - WINMM: o Implemented minimal control change notification
|
|---|
| 458 | - COMCTL32: o Added LVN_BEGINDRAG/LVN_BEGINRDRAG notification to listview
|
|---|
| 459 | control (probably not 100% correct)
|
|---|
| 460 | - USER32: o Implemented support for simple drag & drop (WM_DROPFILES)
|
|---|
| [8590] | 461 | (works in notepad; drag file object from WPS into notepad
|
|---|
| [8538] | 462 | window)
|
|---|
| [8536] | 463 |
|
|---|
| [8531] | 464 | 2002-05-31: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 465 | - DINPUT: o Ignore injected mouse messages (hook; LLMHF_INJECTED flag)
|
|---|
| 466 | - USER32: o Generate injected WH_MOUSE_LL hook event in SetCursorPos
|
|---|
| 467 | (with LLMHF_INJECTED flag set)
|
|---|
| 468 |
|
|---|
| [8534] | 469 | 2002-05-31: Platon Fomichev <platon@innotek.de>
|
|---|
| 470 | - COMCTL32: o Correct scrollbar range for listview control (LISTVIEW_EnsureVisible)
|
|---|
| 471 |
|
|---|
| [8529] | 472 | 2002-05-30: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 473 | - WINMM: o Mixer fixes
|
|---|
| 474 |
|
|---|
| [8527] | 475 | 2002-05-30: Platon Fomichev <platon@innotek.de>
|
|---|
| 476 | - COMCTL32: o Correct scrollbar range for listview control (during WM_VSCROLL)
|
|---|
| 477 | (seems to be done in windows)
|
|---|
| 478 |
|
|---|
| [8511] | 479 | 2002-05-29: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 480 | - USER32: o Fix for ToAscii(Ex) & GetKeyboardState (WinTranslateChar2 call)
|
|---|
| 481 | (fixes AbiWord keyboard input)
|
|---|
| [8516] | 482 | - WINMM: o mixerGetLineControlsA (MIXER_GETLINECONTROLSF_ALL) fixes
|
|---|
| 483 | o mixerGetLineInfoW fix
|
|---|
| [8590] | 484 | - COMCTL32: o ImageList_LoadImageW: match behaviour of ImageList_LoadImageA
|
|---|
| [8523] | 485 | wrt cx parameter (when set to zero)
|
|---|
| [8519] | 486 | (fixes properties dialog of sndvol32.exe (windows mixer app))
|
|---|
| [8521] | 487 | o Updated status control to latest Wine & applied two
|
|---|
| 488 | bugfixes (already sent to wine-patches)
|
|---|
| [8511] | 489 |
|
|---|
| [8513] | 490 | 2002-05-29: Platon Fomichev <platon@innotek.de>
|
|---|
| 491 | - USER32: o GetAsyncKeyState fix for VK_MENU
|
|---|
| [8525] | 492 | - COMCTL32: o Status control fix for resize with CCS_NORESIZE style
|
|---|
| 493 | (invalidate control to prevent leftovers of size grip)
|
|---|
| [8513] | 494 |
|
|---|
| [8505] | 495 | 2002-05-28: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 496 | - REGSVR32: o Fixed startup
|
|---|
| 497 | - WINMM: o Completely implemented mixerSetControlDetails
|
|---|
| 498 | o Mixer updates
|
|---|
| [8509] | 499 | o Support added for master volume (ioctl90 mode)
|
|---|
| [8507] | 500 | o waveIn/OutOpen fix (check for WAVE_FORMAT_QUERY flag)
|
|---|
| 501 | o Wave recording now works
|
|---|
| [8505] | 502 |
|
|---|
| 503 | 2002-05-28: Platon Fomichev <platon@innotek.de>
|
|---|
| [8502] | 504 | - USER32: o Don't send WM_COMMAND to disabled button in DIALOG_IsDialogMessage
|
|---|
| [8503] | 505 | - KERNEL32: o Debugger updates
|
|---|
| [8502] | 506 |
|
|---|
| [8494] | 507 | 2002-05-27: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 508 | - WINMM: o Completely implemented mixerGetControlDetailsA/W
|
|---|
| 509 | o Mixer updates
|
|---|
| [8496] | 510 | - TESTAPP\MIXER:
|
|---|
| 511 | o Test application for mixer functions
|
|---|
| [8494] | 512 |
|
|---|
| [8487] | 513 | 2002-05-25: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 514 | - WINMM: o Fix for soundcards without ioctl90 mixer support
|
|---|
| [8491] | 515 | o Many mixer updates
|
|---|
| [8487] | 516 |
|
|---|
| [8484] | 517 | 2002-05-24: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| 518 | - WINMM: o More mixer updates (not yet finished)
|
|---|
| 519 |
|
|---|
| [8475] | 520 | 2002-05-23: Yuri Dario <mc6530@mclink.it>
|
|---|
| 521 | - USER32: o Don't beep when unable to find menu item when alt key pressed
|
|---|
| 522 |
|
|---|
| [8484] | 523 | 2002-05-23: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8475] | 524 | - WINMM: o Mixer updates (not yet finished)
|
|---|
| 525 |
|
|---|
| [8473] | 526 | 2002-05-23: Platon Fomichev <platon@innotek.de>
|
|---|
| 527 | - USER32: o Keyboard fixes for right alt & right shift
|
|---|
| 528 |
|
|---|
| [8484] | 529 | 2002-05-22: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8466] | 530 | - KERNEL32: o CreateThread bugfix (returned thread id incorrect)
|
|---|
| 531 | (fixes RealPlayer (PostThreadMessage))
|
|---|
| [8467] | 532 | - WINMM: o Added debug wrappers
|
|---|
| [8471] | 533 | o Started with mixer api rewrite
|
|---|
| [8466] | 534 |
|
|---|
| [8484] | 535 | 2002-05-21: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8460] | 536 | - KERNEL32: o Round stack top & bottom (TIB) to page boundary
|
|---|
| 537 |
|
|---|
| [8484] | 538 | 2002-05-20: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8458] | 539 | - KERNEL32: o Make sure LX dlls can never be unloaded (dll object deleted)
|
|---|
| 540 | since a dll that depends on dlls with an exitlist handler
|
|---|
| 541 | doesn't get properly unloaded (initterm not called for unload
|
|---|
| 542 | nor for a 2nd load)
|
|---|
| 543 |
|
|---|
| [8455] | 544 | 2002-05-20: Dmitry Froloff <froloff@os2.ru>
|
|---|
| 545 | - KERNEL32: o Removed 64 MB memory mapped file limit
|
|---|
| 546 | o Fix for opening memory mapped file with size larger than
|
|---|
| 547 | the file size
|
|---|
| 548 |
|
|---|
| [8451] | 549 | 2002-05-17: Platon Fomichev <platon@innotek.de>
|
|---|
| 550 | - USER23: o Experimental DIALOG_IsAccelerator fix; return FALSE
|
|---|
| 551 | if window is not visible (fixes endless loop in
|
|---|
| 552 | property sheet when switching page with keyboard)
|
|---|
| 553 |
|
|---|
| [8484] | 554 | 2002-05-17: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8447] | 555 | - OLEAUT32: o Resync with latest Wine
|
|---|
| [8453] | 556 | - KERNEL32: o Implemented IOCTL_CDROM_SEEK_AUDIO_MSF & IOCTL_CDROM_READ_Q_CHANNEL
|
|---|
| 557 | (IOCTL_CDROM_CURRENT_POSITION only)
|
|---|
| 558 | o IOCTL_CDROM_READ_TOC fix
|
|---|
| [8447] | 559 |
|
|---|
| [8435] | 560 | 2002-05-16: knut st. osmundsen <bird@anduin.net>
|
|---|
| 561 | - MAKE: o Merged in latest changes.
|
|---|
| 562 | o Create NewConfigure.cmd for this environment.
|
|---|
| 563 | Try NewConfigure.cmd -? first.
|
|---|
| 564 | (Do 'nmake needed' before calling this. (stupid!))
|
|---|
| 565 | o Please note that this is still not 100% configured for
|
|---|
| 566 | Odin32 yet. But eventually it will replace the existing
|
|---|
| 567 | make system.
|
|---|
| 568 |
|
|---|
| [8484] | 569 | 2002-05-16: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8425] | 570 | - NTDLL: o Partial resync with Wine
|
|---|
| [8430] | 571 | - KERNEL32: o Export some functions for NTDLL
|
|---|
| 572 | o Fixed creation of logfile for executables on readonly volumes
|
|---|
| 573 | o RegQueryInfoKeyW fix
|
|---|
| [8437] | 574 | o TLS fix for pe2lx images
|
|---|
| 575 | - USER32: o Implemented SPI_SETSCREENSAVETIMEOUT/SPI_GETSCREENSAVETIMEOUT,
|
|---|
| [8590] | 576 | SPI_GETSCREENSAVEACTIVE & SPI_SETSCREENSAVEACTIVE
|
|---|
| [8437] | 577 | SystemParametersInfoA parameters
|
|---|
| [8440] | 578 | - OLE32: o Resync with latest Wine
|
|---|
| [8425] | 579 |
|
|---|
| [8484] | 580 | 2002-05-15: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8414] | 581 | - DINPUT: o Made mouse code reentrant
|
|---|
| [8417] | 582 | - GDI32: o Fix for EnumFontFamiliesA/W
|
|---|
| [8419] | 583 | - SETUPAPI: o Resync with latest Wine
|
|---|
| [8414] | 584 |
|
|---|
| [8484] | 585 | 2002-05-14: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8435] | 586 | - KERNEL32: o CustForce2GBFileSize function added to force
|
|---|
| [8407] | 587 | GetVolumeInformation to tell the app all partitions are FAT
|
|---|
| 588 | (2 GB file size limitation)
|
|---|
| [8412] | 589 | - COMCTL32: o Merged property sheet control with latest Wine version
|
|---|
| [8407] | 590 |
|
|---|
| [8405] | 591 | 2002-05-14: Platon Fomichev <platon@innotek.de>
|
|---|
| 592 | - USER32: o Don't send WM_WINDOWPOSCHANGING message when PM sends
|
|---|
| 593 | SWP_FOCUS(DE)ACTIVATE message.
|
|---|
| 594 |
|
|---|
| [8402] | 595 | 2002-05-10: Platon Fomichev <platon@innotek.de>
|
|---|
| 596 | - KERNEL32: o Parallel port updates (use resource manager to query
|
|---|
| 597 | hardware configuration)
|
|---|
| 598 |
|
|---|
| [8484] | 599 | 2002-05-10: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8399] | 600 | - KERNEL32: o Applications are now allowed to read physical disks or
|
|---|
| 601 | mounted partitions. Write access is only allowed for
|
|---|
| 602 | unmounted partitions or floppy disks.
|
|---|
| 603 | o Implemented GetFileSize for disk objects; corrected
|
|---|
| 604 | return value for some failures (-1)
|
|---|
| 605 |
|
|---|
| [8484] | 606 | 2002-05-09: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8435] | 607 | - KERNEL32: o Implemented IOCTL_DISK_GET_PARTITION_INFO &
|
|---|
| [8395] | 608 | IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
|
|---|
| 609 | o Implemented GetVolumeNameForVolumeMountPointA/W for disk
|
|---|
| 610 | mountpoints (e.g. C:\)
|
|---|
| 611 | o Rewrote FindFirst/NextVolume to use LVM interface (if
|
|---|
| 612 | availabe; else fail)
|
|---|
| 613 | o Extended GetDriveType & GetVolumeInformation for volume
|
|---|
| 614 | names (instead of only disk names (e.g. C:\))
|
|---|
| [8399] | 615 | o GetVolumeInformation change: keep file system name if
|
|---|
| 616 | NTFS or FAT32
|
|---|
| 617 | o Implemented unmounted volume and physical disk access
|
|---|
| [8395] | 618 |
|
|---|
| [8484] | 619 | 2002-05-08: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8383] | 620 | - COMCTL32: o Merged progress, updown, rebar, animate, comboex, flatsb,
|
|---|
| 621 | toolbar, tab, pager, nativefont, imagelist code
|
|---|
| 622 | o Updated license (LGPL) for comctl32
|
|---|
| [8388] | 623 | - ADVAPI32: o AllocateAndInitializeSid bugfix (return value from function
|
|---|
| 624 | in NTDLL)
|
|---|
| [8390] | 625 | - NTDLL: o RtlAddAccessAllowedAce stub always returns TRUE
|
|---|
| [8395] | 626 | - KERNEL32: o Implemented volume & volume mountpoint functions
|
|---|
| [8393] | 627 | (win2k and up)
|
|---|
| [8435] | 628 | o Added stubs for IOCTL_DISK_GET_PARTITION_INFO &
|
|---|
| [8395] | 629 | IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS
|
|---|
| [8383] | 630 |
|
|---|
| 631 | 2002-05-08: Platon Fomichev <platon@innotek.de>
|
|---|
| 632 | - COMCTL32: o Merged listview control with latest Wine
|
|---|
| 633 |
|
|---|
| [8484] | 634 | 2002-05-07: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8379] | 635 | - USER32: o WH_MOUSE_LL hook fixes
|
|---|
| 636 |
|
|---|
| [8378] | 637 | 2002-05-07: Platon Fomichev <platon@innotek.de>
|
|---|
| 638 | - USER32: o Listbox/combobox fix for MFC apps
|
|---|
| 639 | o SetParent doesn't change WS_CHILD style
|
|---|
| 640 | o Experimental change for getParent
|
|---|
| 641 |
|
|---|
| [8376] | 642 | 2002-05-07: knut st. osmundsen <bird@anduin.net>
|
|---|
| 643 | - CmdQd: o The daemon shouldn't inherit standard handles when started.
|
|---|
| 644 | (Hung the daily build, since we use tee to do logging.)
|
|---|
| 645 |
|
|---|
| [8484] | 646 | 2002-05-06: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8371] | 647 | - WS2_32: o WSAAccept added (Wine port (X11 license); todo LGPL)
|
|---|
| 648 |
|
|---|
| [8484] | 649 | 2002-05-01: Sander van Leeuwen <sandervl@innotek.de>
|
|---|
| [8363] | 650 | - USER32: o PMSCAN_DBE_CONV & PMSCAN_DBE_NOCONV added to keyboard
|
|---|
| 651 | translation array
|
|---|
| 652 |
|
|---|