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