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