| 1 | /* $Id: changelog,v 1.1244 2001-02-09 18:32:24 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - COMCTL32: o Register controls in LibMain, not in DLL_InitTerm
|
|---|
| 5 | - KERNEL32: o Re-register dll if DosFreeModule failed with ERROR_INVALID_ACCESS
|
|---|
| 6 | Dll refuses to unload if it has an active exitlist handler
|
|---|
| 7 | or depends on a dll that registered an exitlist handler.
|
|---|
| 8 | In this case the handle remains valid and the entrypoint of
|
|---|
| 9 | the dll is NOT called for DLL_PROCESS_DETACH. The next time
|
|---|
| 10 | DosLoadModule is called, the entrypoint (and RegisterLXDll)
|
|---|
| 11 | isn't called (DLL_PROCESS_ATTACH).
|
|---|
| 12 | WORKAROUND: Re-register the dll so future functions that
|
|---|
| 13 | use this dll calls don't fail.
|
|---|
| 14 | (fixes crash in shell32 in TextPad 4)
|
|---|
| 15 | o shared & code heap umalloc changed (now more meaningful debug
|
|---|
| 16 | messages in case of heap corruption)
|
|---|
| 17 | - USER32: o WM_MINIMIZE/WS_MAXIMIZE support added to CreateWindow
|
|---|
| 18 | (fixes size of main InstallShield window for Microsoft Visual
|
|---|
| 19 | C++ 4.2)
|
|---|
| 20 |
|
|---|
| 21 | 2001-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 22 | - KERNEL32: o Standard in/out/error handle fix. Disable change during
|
|---|
| 23 | console init.
|
|---|
| 24 | (fixes output of console applications; input doesn't work well yet)
|
|---|
| 25 | - USER32: o Dialog control fix. Creating them with CreateWindowExW does not
|
|---|
| 26 | work since our standard user32 controls are still ASCII.
|
|---|
| 27 | (fixes missing icon control in Acrobat Distiller window)
|
|---|
| 28 |
|
|---|
| 29 | 2001-02-08: Michal Necasek <michalnec@volny.cz>
|
|---|
| 30 | - KERNEL32: o RtlUnwind bugfix
|
|---|
| 31 |
|
|---|
| 32 | 2001-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 33 | - USER32: o Wrong error set in GetDlgItem. Must be ERROR_CONTROL_ID_NOT_FOUND.
|
|---|
| 34 | (verified in NT4, SP6)
|
|---|
| 35 |
|
|---|
| 36 | 2001-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 37 | - USER32: o Get/SetWindowLongA/W, Get/SetWindowWord: must set
|
|---|
| 38 | last error to ERROR_INVALID_WINDOW_HANDLE if window not found.
|
|---|
| 39 | (verified in NT4, SP6)
|
|---|
| 40 | Must also return ERROR_INVALID_INDEX if index is out of range.
|
|---|
| 41 | (used to return ERROR_INVALID_PARAMETER) (verified in NT4, SP6)
|
|---|
| 42 | o Temporary hack to force focus to newly created window
|
|---|
| 43 | (if no Odin window has focus after sending WM_ACTIVATE, set
|
|---|
| 44 | focus to window that received the activate message)
|
|---|
| 45 | (fixes wrong keyboard focus in RealPlayer 8)
|
|---|
| 46 |
|
|---|
| 47 | 2001-02-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 48 | - USER32: o DrawEdge bugfixes (signed/unsigned char mismatches)
|
|---|
| 49 | (fixes lines in properties dialog of RealPlayer 8)
|
|---|
| 50 | o Fixed incorrect rounding in dialog control size calculation
|
|---|
| 51 | (fixes wrong height of some dialog controls (rp8 pref. dialog lines))
|
|---|
| 52 | o Don't unregister class if there are still windows that use it.
|
|---|
| 53 |
|
|---|
| 54 | 2001-02-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 55 | - Win32k: o Added option for the All-In-One-Object fix to be able
|
|---|
| 56 | to debug PE executables thru the ICAT. Works with pe2lx
|
|---|
| 57 | and win32k.sys.
|
|---|
| 58 | -1<+|-|[*]>
|
|---|
| 59 | +: Applied when needed. (checked)
|
|---|
| 60 | -: Never applied (use this to debug). (not checked)
|
|---|
| 61 | *: Allways applied. (default) (gray)
|
|---|
| 62 | It's also added to Win32kCC as a three state checkbutton.
|
|---|
| 63 |
|
|---|
| 64 | WARNING! This option should only be used for debugging
|
|---|
| 65 | and will cause your system to crash if used with based
|
|---|
| 66 | images!
|
|---|
| 67 | - tools\Common:
|
|---|
| 68 | o Minor changes in the fileformat classes to use kFile.
|
|---|
| 69 |
|
|---|
| 70 | 2001-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 71 | - GDI32: o LineDDA fix (wrong calling convention)
|
|---|
| 72 | (fixes crash in Solitaire)
|
|---|
| 73 | - USER32: o clientHeight bugfix. Check hwnd instead of pHps->hwnd.
|
|---|
| 74 | (pHps can be NULL)
|
|---|
| 75 | (fixes crash in Solitaire)
|
|---|
| 76 | - INSTALL: o Include ChangeLog-2001 in daily build
|
|---|
| 77 | - COMDLG32: o Merged some changes from Wine (extra notification in
|
|---|
| 78 | FileOpenDlgProc95 & OFN_NOCHANGEDIR support (also added
|
|---|
| 79 | to Unicode version of file open dialog))
|
|---|
| 80 | o Removed workaround for Acrobat Reader file open dialog
|
|---|
| 81 | (Wine update fixed it)
|
|---|