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