[5158] | 1 | /* $Id: changelog,v 1.1264 2001-02-17 20:17:09 sandervl Exp $ */
|
---|
[4454] | 2 |
|
---|
[5149] | 3 | 2000-02-17: Yuri Dario <mc6530@mclink.it>
|
---|
| 4 | - INCLUDE: o Header changes for compiling Opera
|
---|
| 5 |
|
---|
[5147] | 6 | 2001-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 7 | - USER32: o Store active status in custom window word. QWS_FLAGS appears
|
---|
| 8 | to be modified by PM somewhere.
|
---|
| 9 | (fixes WM_ACTIVATE loop in Opera when maximizing or restoring
|
---|
| 10 | the mdi window)
|
---|
| 11 | o Don't include RDW_NOERASE flag in InvalidateRect/Rgn
|
---|
| 12 | (fixes background erase for mdi client window in Opera)
|
---|
| 13 | o IsChild only checked the direct parent of a window. Must
|
---|
| 14 | check all parents (parents of parents etc)
|
---|
| 15 | (fixes TAB handling in Opera dialogs)
|
---|
| 16 | o Ported latest GetNextDlgTabItem from Wine
|
---|
| 17 | (fixes TAB handling in Opera dialogs)
|
---|
[5151] | 18 | o WM_ADJUSTWINDOWPOS bugfix (if app changes size/position)
|
---|
[5153] | 19 | OSLibMapWINDOWPOStoSWP can add flags, but we must not let
|
---|
| 20 | it remove flags.
|
---|
[5151] | 21 | (fixes resizing of Opera MDI windows)
|
---|
[5153] | 22 | o ScrollWindow(Ex) bugfixes
|
---|
| 23 | Must scroll child windows manually
|
---|
| 24 | (fixes scrolling of Opera html MDI windows)
|
---|
[5158] | 25 | o Combobox fix from Wine (CBCalcPlacement)
|
---|
| 26 | (fixes combobox controls in Opera html MDI windows)
|
---|
| 27 | (TODO: sync rest with latest Wine control code)
|
---|
[5147] | 28 |
|
---|
[5140] | 29 | 2001-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 30 | - COMDLG32: o Ignore OFN_FILEMUSTEXIST flag in GetSaveFileNameA/W
|
---|
| 31 | (NT4 seems to ignore it too and it fixes the save dialog
|
---|
| 32 | in ElstarFormular 2000)
|
---|
| 33 |
|
---|
[5132] | 34 | 2001-02-14: knut stange osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 35 | - Win32k.lib:
|
---|
| 36 | o Corrected build breaker: log.h should not be included.
|
---|
| 37 | log.h was removed from the CINLCUDES two days ago.
|
---|
| 38 |
|
---|
[5126] | 39 | 2001-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 40 | - KERNEL32: o Allocate TLS index of module before loading the dll it needs
|
---|
| 41 | (some apps assume their executable index is always zero)
|
---|
| 42 | (fixes crash in BrMSX)
|
---|
| 43 | o Must use EXC_CallHandler to call RtlUnwind handler
|
---|
| 44 | (fixes crash during RaiseException in BrMSX)
|
---|
[5132] | 45 | - OPENGL\GLU:
|
---|
[5129] | 46 | o Removed initterm.cpp. Use dllentry.obj instead
|
---|
[5126] | 47 | - INCLUDE\misc.h:
|
---|
| 48 | o Print file and function name before executing an int 3. (DebugInt3)
|
---|
[5129] | 49 | - *\initterm.cpp:
|
---|
| 50 | o Wrong calling convention for CRT_Init/Term, ctordtorInit/Term
|
---|
[5136] | 51 | o VAC 3.6.5 ctordtorInit/Term takes one parameter
|
---|
[5138] | 52 | - USER32: o Delay SetFocus when called during processing of WM_SETFOCUS
|
---|
| 53 | message (not allowed by PM).
|
---|
| 54 | (fixes keyboard focus in ElstarFormular 2000)
|
---|
[5126] | 55 |
|
---|
[5125] | 56 | 2000-02-13: Michal Necasek <mike@mendelu.cz>
|
---|
| 57 | - USER32: o Wrong unicode<->ascii translation for some listbox & combobox
|
---|
| 58 | messages. Must check if the control style includes LB/CB_HASSTRINGS.
|
---|
| 59 | (CB_FINDSTRING, CB_FINDSTRINGEXACT, CB_SELECTSTRING,
|
---|
| 60 | LB_FINDSTRING, LB_FINDSTRINGEXACT, LB_SELECTSTRING)
|
---|
| 61 |
|
---|
[5132] | 62 | 2001-02-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 63 | - Win32k.lib:
|
---|
| 64 | o Removed /src/win32k/include from the CFLAGS.
|
---|
| 65 |
|
---|
[5114] | 66 | 2001-02-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 67 | - Win32k: o Added symbols for the 14062D kernels.
|
---|
| 68 | o Added a query API for getting memory information.
|
---|
[5121] | 69 | o Added force preload option - should be very useful when
|
---|
| 70 | debugging Ring 3 apps with ICAT. (Option -F)
|
---|
[5114] | 71 |
|
---|
[5091] | 72 | 2001-02-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 73 | - ODINCRT: o Completed runtime dll for VAC 3.6.5
|
---|
| 74 | - WINMM, GLU, CRTDLL, KERNEL32:
|
---|
| 75 | o Compile fixes for VAC 3.6.5
|
---|
| 76 | - RASAPI32: o Can't use LXLITE as it crashes on this binary
|
---|
[5125] | 77 | - KERNEL32: o Check handle in LocalLock and return NULL if invalid
|
---|
[5132] | 78 | (some apps use LocalLock to get access to GDI objects; doesn't
|
---|
[5125] | 79 | work in Odin (TODO))
|
---|
[5091] | 80 |
|
---|
[5082] | 81 | 2001-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 82 | - USER32: o Check if window has been destroyed before accessing
|
---|
| 83 | this pointer again in SendInternalMessage.
|
---|
| 84 | (fixes heap corruption in MS Visual C++ 4.2 install)
|
---|
| 85 | TODO: Needs a permanent and correct solution as this
|
---|
| 86 | can happen in several other places.
|
---|
| 87 | Also a potential problem in user32 classes (InfoPtr).
|
---|
[5085] | 88 | o Set last error to ERROR_INVALID_INDEX for invalid class word
|
---|
| 89 | index.
|
---|
[5082] | 90 |
|
---|
[5078] | 91 | 2001-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 92 | - COMCTL32: o Register controls in LibMain, not in DLL_InitTerm
|
---|
| 93 | - KERNEL32: o Re-register dll if DosFreeModule failed with ERROR_INVALID_ACCESS
|
---|
| 94 | Dll refuses to unload if it has an active exitlist handler
|
---|
| 95 | or depends on a dll that registered an exitlist handler.
|
---|
| 96 | In this case the handle remains valid and the entrypoint of
|
---|
| 97 | the dll is NOT called for DLL_PROCESS_DETACH. The next time
|
---|
| 98 | DosLoadModule is called, the entrypoint (and RegisterLXDll)
|
---|
| 99 | isn't called (DLL_PROCESS_ATTACH).
|
---|
| 100 | WORKAROUND: Re-register the dll so future functions that
|
---|
| 101 | use this dll calls don't fail.
|
---|
| 102 | (fixes crash in shell32 in TextPad 4)
|
---|
| 103 | o shared & code heap umalloc changed (now more meaningful debug
|
---|
| 104 | messages in case of heap corruption)
|
---|
| 105 | - USER32: o WM_MINIMIZE/WS_MAXIMIZE support added to CreateWindow
|
---|
[5114] | 106 | (fixes size of main InstallShield window for Microsoft Visual
|
---|
[5078] | 107 | C++ 4.2)
|
---|
[5079] | 108 | o Fixed FS corruption in DIALOG_DlgDirList (c library function calls)
|
---|
[5078] | 109 |
|
---|
[5069] | 110 | 2001-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 111 | - KERNEL32: o Standard in/out/error handle fix. Disable change during
|
---|
| 112 | console init.
|
---|
| 113 | (fixes output of console applications; input doesn't work well yet)
|
---|
[5114] | 114 | - USER32: o Dialog control fix. Creating them with CreateWindowExW does not
|
---|
[5071] | 115 | work since our standard user32 controls are still ASCII.
|
---|
| 116 | (fixes missing icon control in Acrobat Distiller window)
|
---|
[5069] | 117 |
|
---|
| 118 | 2001-02-08: Michal Necasek <michalnec@volny.cz>
|
---|
| 119 | - KERNEL32: o RtlUnwind bugfix
|
---|
| 120 |
|
---|
[5064] | 121 | 2001-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 122 | - USER32: o Wrong error set in GetDlgItem. Must be ERROR_CONTROL_ID_NOT_FOUND.
|
---|
| 123 | (verified in NT4, SP6)
|
---|
| 124 |
|
---|
[5059] | 125 | 2001-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 126 | - USER32: o Get/SetWindowLongA/W, Get/SetWindowWord: must set
|
---|
| 127 | last error to ERROR_INVALID_WINDOW_HANDLE if window not found.
|
---|
| 128 | (verified in NT4, SP6)
|
---|
| 129 | Must also return ERROR_INVALID_INDEX if index is out of range.
|
---|
| 130 | (used to return ERROR_INVALID_PARAMETER) (verified in NT4, SP6)
|
---|
| 131 | o Temporary hack to force focus to newly created window
|
---|
| 132 | (if no Odin window has focus after sending WM_ACTIVATE, set
|
---|
| 133 | focus to window that received the activate message)
|
---|
| 134 | (fixes wrong keyboard focus in RealPlayer 8)
|
---|
| 135 |
|
---|
[5055] | 136 | 2001-02-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 137 | - USER32: o DrawEdge bugfixes (signed/unsigned char mismatches)
|
---|
| 138 | (fixes lines in properties dialog of RealPlayer 8)
|
---|
| 139 | o Fixed incorrect rounding in dialog control size calculation
|
---|
| 140 | (fixes wrong height of some dialog controls (rp8 pref. dialog lines))
|
---|
| 141 | o Don't unregister class if there are still windows that use it.
|
---|
| 142 |
|
---|
[5054] | 143 | 2001-02-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 144 | - Win32k: o Added option for the All-In-One-Object fix to be able
|
---|
| 145 | to debug PE executables thru the ICAT. Works with pe2lx
|
---|
| 146 | and win32k.sys.
|
---|
| 147 | -1<+|-|[*]>
|
---|
| 148 | +: Applied when needed. (checked)
|
---|
| 149 | -: Never applied (use this to debug). (not checked)
|
---|
| 150 | *: Allways applied. (default) (gray)
|
---|
| 151 | It's also added to Win32kCC as a three state checkbutton.
|
---|
[5114] | 152 |
|
---|
| 153 | WARNING! This option should only be used for debugging
|
---|
| 154 | and will cause your system to crash if used with based
|
---|
[5054] | 155 | images!
|
---|
[5114] | 156 | - tools\Common:
|
---|
[5054] | 157 | o Minor changes in the fileformat classes to use kFile.
|
---|
| 158 |
|
---|
[5042] | 159 | 2001-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 160 | - GDI32: o LineDDA fix (wrong calling convention)
|
---|
| 161 | (fixes crash in Solitaire)
|
---|
| 162 | - USER32: o clientHeight bugfix. Check hwnd instead of pHps->hwnd.
|
---|
| 163 | (pHps can be NULL)
|
---|
| 164 | (fixes crash in Solitaire)
|
---|
| 165 | - INSTALL: o Include ChangeLog-2001 in daily build
|
---|
[5114] | 166 | - COMDLG32: o Merged some changes from Wine (extra notification in
|
---|
[5043] | 167 | FileOpenDlgProc95 & OFN_NOCHANGEDIR support (also added
|
---|
| 168 | to Unicode version of file open dialog))
|
---|
| 169 | o Removed workaround for Acrobat Reader file open dialog
|
---|
| 170 | (Wine update fixed it)
|
---|