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