| 1 | /* $Id: changelog,v 1.1886 2001-12-06 15:58:24 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - KERNEL32: o Added FindFirstFileExA/FindFirstFileExW
|
|---|
| 5 | o Overlapped IO updates (still untested)
|
|---|
| 6 | - DINPUT: o Link with guidlib.lib
|
|---|
| 7 | - GUIDLIB: o Include dinput.h for DirectInput GUIDs
|
|---|
| 8 |
|
|---|
| 9 | 2001-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 10 | - KERNEL32: o Merged WriteFile & WriteFileEx, ReadFile & ReadFileEx
|
|---|
| 11 | handle manager functions
|
|---|
| 12 | o Removed dwType handle manager structure member; added
|
|---|
| 13 | win32 handle to structure
|
|---|
| 14 | (NOTE: All work in progress for new framework for overlapped IO)
|
|---|
| 15 | o ReadFileEx/WriteFileEx: lpOverlapped->Offset & lpOverlapped->OffsetHigh
|
|---|
| 16 | must be 0 if used with named pipes
|
|---|
| 17 |
|
|---|
| 18 | 2001-12-04: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 19 | - KERNEL32: o parallel port support restricted to physical ports
|
|---|
| 20 | (LAN redirections not supported)
|
|---|
| 21 |
|
|---|
| 22 | 2001-12-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 23 | - COMCTL32: o Hack added for proper resizing of wizard property sheet in
|
|---|
| 24 | CVP. Not sure if it's always correct or whether it has a
|
|---|
| 25 | bad effect on other apps (none found so far).
|
|---|
| 26 | - WININET: o HttpSendRequestA fix: strlen(NULL) crashes
|
|---|
| 27 |
|
|---|
| 28 | 2001-12-03: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 29 | - KERNEL32: o put in correct ioctl identifiers for parport support
|
|---|
| 30 | in winioctl.h
|
|---|
| 31 | o parallel port support (hardware configuration) enabled
|
|---|
| 32 |
|
|---|
| 33 | 2001-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 34 | - KERNEL32: o Use DosSleep in Sleep (don't call WGSS)
|
|---|
| 35 | o GetThreadPriority: return priority stored in TEB
|
|---|
| 36 | o Rewrote SetThreadPriority; allow it to change priority
|
|---|
| 37 | classes too. WGSS only changes delta in SetThreadPriority
|
|---|
| 38 | and class in SetPriorityClass (but that one affects the whole
|
|---|
| 39 | process, so it is rarely used by applications)
|
|---|
| 40 | THREAD_PRIORITY_IDLE -> PRTYC_IDLETIME, 0
|
|---|
| 41 | THREAD_PRIORITY_LOWEST -> PRTYC_REGULAR, PRTYD_MINIMUM
|
|---|
| 42 | THREAD_PRIORITY_BELOW_NORMAL -> PRTYC_REGULAR, -15
|
|---|
| 43 | THREAD_PRIORITY_NORMAL -> PRTYC_REGULAR, 0
|
|---|
| 44 | THREAD_PRIORITY_ABOVE_NORMAL -> PRTYC_REGULAR, 15
|
|---|
| 45 | THREAD_PRIORITY_HIGHEST -> PRTYC_REGULAR, PRTYD_MAXIMUM
|
|---|
| 46 | THREAD_PRIORITY_TIME_CRITICAL -> PRTYC_TIMECRITICAL, 0
|
|---|
| 47 | o SetPriorityClass; just return success for now
|
|---|
| 48 |
|
|---|
| 49 | 2001-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 50 | - USER32: o Don't send WM_SIZE message to dialog before it receives
|
|---|
| 51 | WM_INITDIALOG
|
|---|
| 52 | (winzip 8.0 and Opera crash when sending this message too soon)
|
|---|
| 53 | (TODO: check in NT if this is really correct)
|
|---|
| 54 | - COMCTL32: o Restored old property sheet code as latest Wine version
|
|---|
| 55 | causes too many new problems.
|
|---|
| 56 |
|
|---|
| 57 | 2001-12-01: knut st. osmundsen <kosmunds@csc.com>
|
|---|
| 58 | - CRTDLL: o Include ctype.h from dir.c and string.c. (Noted by Ye][ow.)
|
|---|
| 59 |
|
|---|
| 60 | 2001-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 61 | - KERNEL32: o Fixed GetThreadTEB macro & GetCurrentThreadId
|
|---|
| 62 | (completely broke debug build among other things)
|
|---|
| 63 |
|
|---|
| 64 | 2000-12-01: Yuri Dario <mc6530@mclink.it>
|
|---|
| 65 | - USER32: o MENU_FindItem: extra check added for loops in menus
|
|---|
| 66 |
|
|---|
| 67 | 2001-11-30: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 68 | - KERNEL32: o heapstring.cpp: improvement on HEAP_malloc, HEAP_free,
|
|---|
| 69 | HEAP_realloc, HEAP_size
|
|---|
| 70 | o acceleration on GetCurrentThreadId()
|
|---|
| 71 | - SHELL32: o use HEAP_xxx functions for frequently called APIs
|
|---|
| 72 | - ODINPROF: o Note: SET PROFILEHOOKS=1 before doing NMAKE PROFILE=1
|
|---|
| 73 | This will enable the profiler in ODINCRTP.DLL
|
|---|
| 74 | (use release build ODINPROF.DLL), generates (pid).prof
|
|---|
| 75 | on process exit.
|
|---|
| 76 | - * o fixed out-of-scope TRACE,FIXME,WARN macros
|
|---|
| 77 |
|
|---|
| 78 | 2001-11-30: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 79 | - USER32: o Changed menu hilite background to the color used by PM
|
|---|
| 80 | (OS/2 look)
|
|---|
| 81 | o DIALOG_IsAccelerator resync (Wine)
|
|---|
| 82 | - KERNEL32: o Partly implemented PurgeComm
|
|---|
| 83 | - * o Removed all the TRACE, FIXME & WARN redefinitions
|
|---|
| 84 | (temporary hack for better logging; didn't affect the release
|
|---|
| 85 | build anyway)
|
|---|
| 86 | TODO: we need better logging in Wine code
|
|---|
| 87 |
|
|---|
| 88 | 2001-11-29: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 89 | - KERNEL32: o Split dosdevice.cpp from stubs.cpp
|
|---|
| 90 | (DefineDosDevice, QueryDosDevice)
|
|---|
| 91 | o Fixed CDROM ioctls and disk access
|
|---|
| 92 | (previous fix failed or cause possible regression)
|
|---|
| 93 | - OLEAUT32: o olepicture.c: fixed null pointer exception
|
|---|
| 94 | cause: our TRACE, FIXME, etc. debugtools macros all
|
|---|
| 95 | go out of scope of a braceless if-statement before!
|
|---|
| 96 | Therefore, we're getting false (error) messages or
|
|---|
| 97 | even crashes. (to be fixed)
|
|---|
| 98 |
|
|---|
| 99 | 2001-11-29: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 100 | - COMCTL32: o Listview: invalidate entire item for ownerdraw control
|
|---|
| 101 | (don't exclude report margin)
|
|---|
| 102 | - KERNEL32: o Fixed disk access (yesterday's changes broke it)
|
|---|
| 103 | - SHELL32: o Removed wrong call to ctordtorInit that caused the disk
|
|---|
| 104 | access problems in the custom build.
|
|---|
| 105 |
|
|---|
| 106 | 2001-11-28: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 107 | - KERNEL32: o fixes in ::CreateFile calls (return codes must be Win32)
|
|---|
| 108 | o fixes in symbolic link management
|
|---|
| 109 | o marked some important TBDs for phys. disk mgmt!
|
|---|
| 110 | o fixed HMCOMM to accept (what a good idea)
|
|---|
| 111 | \\.\COM1, COM1, COM1: but not "\\.\COM1:" (NT4SP6)
|
|---|
| 112 | o added support for AUX->COM1, PRN->LPT1, CON->CONOUT$
|
|---|
| 113 | o added NUL device
|
|---|
| 114 |
|
|---|
| 115 | 2001-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 116 | - KERNEL32: o WaitCommEvent fixes (must reset overlapped event semaphore &
|
|---|
| 117 | store result of overlapped operation in parameter)
|
|---|
| 118 | o Removed symbolic link for \\.\. Adding this is a very bad idea
|
|---|
| 119 | as CreateFile calls for device driver will be routed to files.
|
|---|
| 120 | Probably causes even more problems.
|
|---|
| 121 | - INCLUDE: o winbase.h: CBR_xxxx definitions wrong
|
|---|
| 122 |
|
|---|
| 123 | 2001-11-27: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 124 | - KERNEL32: o added \\.\ as standard symbolic link to the local namespace
|
|---|
| 125 | This is the clean way for alternative device names,
|
|---|
| 126 | local kludges in the device handlers should be avoided.
|
|---|
| 127 | o fix in name resolver
|
|---|
| 128 |
|
|---|
| 129 | 2001-11-27: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 130 | - WSOCK32: o Missing FS wrapper macros added
|
|---|
| 131 | - KERNEL32: o Accept \\.\COMx as name for COM ports
|
|---|
| 132 | - USER32: o EnumChildWindow bugfix
|
|---|
| 133 |
|
|---|
| 134 | 2001-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 135 | - KERNEL32: o Implemented CancelIo & GetOverlappedResult for serial comm
|
|---|
| 136 | o Preliminary work on overlapped IO for serial comm
|
|---|
| 137 |
|
|---|
| 138 | 2001-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 139 | - KERNEL32: o Custom build fix; check for double call for inittermKernel32
|
|---|
| 140 | o More informative message when non-existing api is called.
|
|---|
| 141 | Now displays dll + function name or ordinal.
|
|---|
| 142 |
|
|---|
| 143 | 2001-11-23: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 144 | - KERNEL32: o minor work in parallel port support (ioctls)
|
|---|
| 145 | o "Kernel Object Namespace" -> handlenames.cpp introduced
|
|---|
| 146 | (yet inactive)
|
|---|
| 147 |
|
|---|
| 148 | 2001-11-23: knut st. osmundsen <kosmunds@csc.com>
|
|---|
| 149 | - Misc. Makefiles: o Corrected the descriptions (on request from Ye][ow).
|
|---|
| 150 |
|
|---|
| 151 | 2001-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 152 | - KERNEL32: o Check volume label during IOCTL_DISK_GET_DRIVE_GEOMETRY to
|
|---|
| 153 | see if the media has been changed or removed.
|
|---|
| 154 | o Implemented WriteFile & GetFileType for disk handles
|
|---|
| 155 | (write currently only allowed for drive A)
|
|---|
| 156 | - DSOUND: o Renamed DllGetClassObject & DllCanUnloadNow to avoid name
|
|---|
| 157 | conflicts in the custom build.
|
|---|
| 158 |
|
|---|
| 159 | 2001-11-22: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 160 | - ODINPROF: o initial version
|
|---|
| 161 | PROFILE images using ODINCRTP generate a <pid>.prof file
|
|---|
| 162 | (the optimized release build of ODINPROF should be used)
|
|---|
| 163 | No source code modification required.
|
|---|
| 164 | Problem: mapsym seems to corrupt kernel32.sym
|
|---|
| 165 | - KERNEL32: o additions to parallel port support
|
|---|
| 166 |
|
|---|
| 167 | 2001-11-21: knut st. osmundsen <kosmunds@csc.com>
|
|---|
| 168 | - src/makefile:
|
|---|
| 169 | o Added guidlib to NOTDLLS.
|
|---|
| 170 |
|
|---|
| 171 | 2001-11-21: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 172 | - COMCTL32: o Tooltips bugfixes (wrong pointer used to free memory)
|
|---|
| 173 | - USER32: o GetMenu: check that window menu is indeed a menu and not an id
|
|---|
| 174 | (fixes failed assertion in ZOC)
|
|---|
| 175 | o Groupbox fix: if text changes; erase top border + old text
|
|---|
| 176 |
|
|---|
| 177 | 2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 178 | - USER32: o Destroy CD notification window during dll unload
|
|---|
| 179 | o Focus fix for dialog windows
|
|---|
| 180 | Experiments in NT4 show that dialogs that are children don't
|
|---|
| 181 | receive focus. Not sure if this is always true. (couldn't
|
|---|
| 182 | find any info about this in the SDK docs)
|
|---|
| 183 |
|
|---|
| 184 | 2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 185 | - GUIDLIB: o Library with all GUIDs used by Odin
|
|---|
| 186 | - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:
|
|---|
| 187 | o Removed guid source files and link with guidlib.lib
|
|---|
| 188 |
|
|---|
| 189 | 2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 190 | - WS2_32: o Compile fix
|
|---|
| 191 | - OLEAUT32: o Don't include guid file in custom build library
|
|---|
| 192 |
|
|---|
| 193 | 2000-11-18: Yuri Dario <mc6530@mclink.it>
|
|---|
| 194 | - USER32: o WM_SETTEXT (unicode) fix
|
|---|
| 195 | (latest changes broke Opera among other things)
|
|---|
| 196 |
|
|---|
| 197 | 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 198 | - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
|
|---|
| 199 | - USER32: o Disallow nested calls to SetScrollRange. This is most likely
|
|---|
| 200 | not the right fix, but it works so far without negative side
|
|---|
| 201 | effects.
|
|---|
| 202 | (fixes crash in CVP listview with 4+ items)
|
|---|
| 203 | - GDI32: o Removed line draw speedup. If I have to choose between
|
|---|
| 204 | a performance loss of a few clock cycles and a code size
|
|---|
| 205 | increase of 2k, I prefer the 1st option.
|
|---|
| 206 | - WSOCK32: o ODINWRAP changes break winsock. This code still depended
|
|---|
| 207 | on FS save/restore. Now added a wrapper header for all
|
|---|
| 208 | OS/2 socket functions.
|
|---|
| 209 |
|
|---|
| 210 | 2001-11-16: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 211 | - ODINWRAP: o don't generate any frame procedure for RELEASE build
|
|---|
| 212 | anymore (even no FS: wrapper (meanwhile superfluous))
|
|---|
| 213 | -> significant performance gain for logged micro functions
|
|---|
| 214 | - KERNEL32: o heap speedup (30%)
|
|---|
| 215 | - GDI32: o minor line drawing speedup
|
|---|
| 216 |
|
|---|
| 217 | 2001-11-14: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 218 | - KERNEL32: o fixed infinite loop in PE loader for corrupted or
|
|---|
| 219 | misinterpreted PE images (Opera 6)
|
|---|
| 220 | - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
|
|---|
| 221 |
|
|---|
| 222 | 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 223 | - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
|
|---|
| 224 | o Removed unnecessary string copy operation changes (heap -> stack)
|
|---|
| 225 | Performance improvement is minimal at best and stack
|
|---|
| 226 | corruption is MUCH harder to locate than heap corruption.
|
|---|
| 227 |
|
|---|
| 228 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 229 | - fastdep: o IPF support.
|
|---|
| 230 |
|
|---|
| 231 | 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 232 | - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
|
|---|
| 233 | ... which operate on stack only (STACK_strdupXXX)
|
|---|
| 234 | This could slightly reduce heap pressure.
|
|---|
| 235 | - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
|
|---|
| 236 |
|
|---|
| 237 | 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 238 | - KERNEL32: o Added missing entry in debug log table for hmparport
|
|---|
| 239 | (fixes crash in debug build with selective logging)
|
|---|
| 240 | - GDI32: o CalcBitmapSize bugfix
|
|---|
| 241 | o SetDIBitsToDevice workaround for bug in Matrox driver.
|
|---|
| 242 | When blitting 32 bpp data, the GpiDrawBits call will
|
|---|
| 243 | fail with an insufficient memory error. When that happens,
|
|---|
| 244 | convert data to 24 bpp and try again.
|
|---|
| 245 | (TODO: This can happen in more functions!!)
|
|---|
| 246 | o Fixes for wrong bit masks in several functions (24 & 32 bpp)
|
|---|
| 247 | o Refuse DeleteObject for DEFAULT_GUI_FONT handle
|
|---|
| 248 |
|
|---|
| 249 | 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 250 | - ODINWRAP: o improved thread call path tracking
|
|---|
| 251 | (now collects i. e. HEAP_malloc->HeapAlloc paths)
|
|---|
| 252 |
|
|---|
| 253 | 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 254 | - USER32: o Fix for calculating font size for a dialog box
|
|---|
| 255 |
|
|---|
| 256 | 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
|
|---|
| 257 | - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
|
|---|
| 258 | (Build breaker. Seems like someone has an old toolkit...)
|
|---|
| 259 |
|
|---|
| 260 | 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 261 | - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
|
|---|
| 262 |
|
|---|
| 263 | 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 264 | - COMCTL32: o Ported latest Wine property sheet control
|
|---|
| 265 | (fixes some, but not all problems in CVP)
|
|---|
| 266 |
|
|---|
| 267 | 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 268 | - KERNEL32: o first shot at parport support
|
|---|
| 269 |
|
|---|
| 270 | 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 271 | - USER32: o EndDialog fix for MFC dialog windows
|
|---|
| 272 | o static control fix: SS_CENTERIMAGE means fill remainder
|
|---|
| 273 | of client area with upper left pixel of bitmap
|
|---|
| 274 | - KERNEL32: o Fix for applications that use CreateFile to open
|
|---|
| 275 | a named pipe
|
|---|
| 276 |
|
|---|
| 277 | 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 278 | - WININET: o http, internet: WINE sync
|
|---|
| 279 |
|
|---|
| 280 | 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 281 | - KERNEL32: o Call old DosOpen if DosOpenL not available
|
|---|
| 282 |
|
|---|