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