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