source: trunk/changelog@ 5238

Last change on this file since 5238 was 5238, checked in by sandervl, 25 years ago

* empty log message *

File size: 13.6 KB
RevLine 
[5238]1/* $Id: changelog,v 1.1281 2001-02-21 21:31:15 sandervl Exp $ */
[4454]2
[5235]3 2001-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Changes for minimizing windows. Not done yet.
[5238]5 o Added CreateFakeWindowEx.
6 Turns native OS/2 window into window recognized by Odin (with
7 only very limited functionality)
8 Useful for creating an Odin window with an OS/2 window as
9 parent.
[5235]10
11 2000-02-21: Michal Necasek <mike@mendelu.cz>
12 - USER32: o Translate WM_BUTTONxMOTIONSTART/END to WM_MOUSEMOVE
13 Applications don't expect WM_NULL when fetching mouse
14 messages from the queue.
15 (fixes mouse jumping in Unreal)
16
[5233]17 2000-02-20: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
18 - Win32k: o Moved calltabs to the code segments. Clears the
19 WriteProtect(WP) flag in CR0 to be able to do this. The flags
20 is of course restored when the calltabs are written.
21 o Completed callgate code. Though is not activated for SMP
22 kernels yet as I haven't tested that yet.
23 The callgate works just as any other callgate in OS2, it
24 calls kernel routines for entry and exit housekeeping.
25 o Updated the win32k library and header to accomodate this.
26 All IOCtl structures are changed.
27 So, Install the new the new Odin32 and reboot before using
28 it so the new win32k.sys is installed.
29
[5214]30 2001-02-20: Sander van Leeuwen <sandervl@xs4all.nl>
31 - USER32: o Fix for position of system menu in (mdi) child windows
[5233]32 o Use WinScrollWindow to scroll children again and manually
[5214]33 notify children that they have moved. (PM only does this
34 for windows with CS_MOVENOTIFY class)
35 (much smoother scroll in Opera)
36 o Use WinGetMaxPosition to determine default maximized position
37 of toplevel window before sending WM_GETMINMAXINFO
38 (maximized Odin windows no longer obscure WarpCenter)
[5216]39 o Activation fixes for MDI windows
[5214]40
[5213]41 2000-02-19: Oliver Braun <Oliver.Braun@hamburg.de>
[5198]42 - KERNEL32: o OSLibDosAllocMem fix (better checks for errors + return
43 4kb aligned memory if 64kb alignment fails)
44 (fixes StarOffice 5.2 install)
45
46 2000-02-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
[5194]47 - KERNEL32: o Use DosAllocMemEx to 64KB align memory (OSLibDosAllocMem)
48 when available.
[5211]49 - Win32k: o Prepared API code for both callgate and IOCtl invokation.
50 This caused changes in IOCtl parameter structures.
51 Callgate code is completed but not used yet because
52 it isn't tested yet.
[5194]53
[5190]54 2001-02-19: Sander van Leeuwen <sandervl@xs4all.nl>
55 - COMDLG32: o Commented out Norse ChooseFont dialog (incomplete translation)
56 Use the English version instead.
57 - USER32: o Corrected invalidating nonclient parts of a window after a resize.
58 (fixes resizing of mdi windows in mdi sample)
59
[5187]60 2000-02-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
61 - Win32k: o Finished implementation of DosAllocMemEx.
62 DosAllocMemEx is equal to DosAllocMem but takes some extra
63 OBJ_ flags (defined in win32k.h).
64 TODO: "Grow arena" problem when allocating memory at a
65 specific location. I'll fix this ASAP and add a fix for the
66 loader too (which has the same problems with loading EXEs
67 without fixup above 64MB).
68
[5165]69 2001-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
70 - USER32: o Restore window origin in SetWindowPos for parent window with
[5187]71 CS_OWNDC style.
[5166]72 Do the same thing in WM_VRNENABLED message handler.
[5165]73 (fixes paint offset problems in Opera windows)
[5172]74 o Bug in yesterday's ScrollWindowEx fix
75 (fixes smooth scrolling of child windows in Opera html window)
[5174]76 o Detect DestroyWindow call during CreateWindowEx and delay
77 deleting the window/dialog object.
78 (fixes crash in Opera when going to fullscreen mode)
[5165]79
[5161]80 2000-02-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
81 - Win32kCC: o Rewrote to notebook. (fixes size problem)
82 o Added memoryinfo page which is refreshed every second.
83
[5149]84 2000-02-17: Yuri Dario <mc6530@mclink.it>
85 - INCLUDE: o Header changes for compiling Opera
86
[5147]87 2001-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
88 - USER32: o Store active status in custom window word. QWS_FLAGS appears
89 to be modified by PM somewhere.
90 (fixes WM_ACTIVATE loop in Opera when maximizing or restoring
91 the mdi window)
[5161]92 o Don't include RDW_NOERASE flag in InvalidateRect/Rgn
[5147]93 (fixes background erase for mdi client window in Opera)
94 o IsChild only checked the direct parent of a window. Must
95 check all parents (parents of parents etc)
96 (fixes TAB handling in Opera dialogs)
97 o Ported latest GetNextDlgTabItem from Wine
98 (fixes TAB handling in Opera dialogs)
[5151]99 o WM_ADJUSTWINDOWPOS bugfix (if app changes size/position)
[5161]100 OSLibMapWINDOWPOStoSWP can add flags, but we must not let
[5153]101 it remove flags.
[5151]102 (fixes resizing of Opera MDI windows)
[5153]103 o ScrollWindow(Ex) bugfixes
104 Must scroll child windows manually
105 (fixes scrolling of Opera html MDI windows)
[5158]106 o Combobox fix from Wine (CBCalcPlacement)
107 (fixes combobox controls in Opera html MDI windows)
108 (TODO: sync rest with latest Wine control code)
[5147]109
[5140]110 2001-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
111 - COMDLG32: o Ignore OFN_FILEMUSTEXIST flag in GetSaveFileNameA/W
112 (NT4 seems to ignore it too and it fixes the save dialog
113 in ElstarFormular 2000)
114
[5132]115 2001-02-14: knut stange osmundsen <knut.stange.osmundsen@mynd.no>
116 - Win32k.lib:
117 o Corrected build breaker: log.h should not be included.
118 log.h was removed from the CINLCUDES two days ago.
119
[5126]120 2001-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
121 - KERNEL32: o Allocate TLS index of module before loading the dll it needs
122 (some apps assume their executable index is always zero)
123 (fixes crash in BrMSX)
124 o Must use EXC_CallHandler to call RtlUnwind handler
125 (fixes crash during RaiseException in BrMSX)
[5132]126 - OPENGL\GLU:
[5129]127 o Removed initterm.cpp. Use dllentry.obj instead
[5126]128 - INCLUDE\misc.h:
129 o Print file and function name before executing an int 3. (DebugInt3)
[5129]130 - *\initterm.cpp:
131 o Wrong calling convention for CRT_Init/Term, ctordtorInit/Term
[5136]132 o VAC 3.6.5 ctordtorInit/Term takes one parameter
[5138]133 - USER32: o Delay SetFocus when called during processing of WM_SETFOCUS
134 message (not allowed by PM).
135 (fixes keyboard focus in ElstarFormular 2000)
[5126]136
[5125]137 2000-02-13: Michal Necasek <mike@mendelu.cz>
138 - USER32: o Wrong unicode<->ascii translation for some listbox & combobox
139 messages. Must check if the control style includes LB/CB_HASSTRINGS.
140 (CB_FINDSTRING, CB_FINDSTRINGEXACT, CB_SELECTSTRING,
141 LB_FINDSTRING, LB_FINDSTRINGEXACT, LB_SELECTSTRING)
142
[5132]143 2001-02-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
144 - Win32k.lib:
145 o Removed /src/win32k/include from the CFLAGS.
146
[5114]147 2001-02-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
148 - Win32k: o Added symbols for the 14062D kernels.
149 o Added a query API for getting memory information.
[5121]150 o Added force preload option - should be very useful when
151 debugging Ring 3 apps with ICAT. (Option -F)
[5114]152
[5091]153 2001-02-11: Sander van Leeuwen <sandervl@xs4all.nl>
154 - ODINCRT: o Completed runtime dll for VAC 3.6.5
155 - WINMM, GLU, CRTDLL, KERNEL32:
156 o Compile fixes for VAC 3.6.5
157 - RASAPI32: o Can't use LXLITE as it crashes on this binary
[5125]158 - KERNEL32: o Check handle in LocalLock and return NULL if invalid
[5132]159 (some apps use LocalLock to get access to GDI objects; doesn't
[5125]160 work in Odin (TODO))
[5091]161
[5082]162 2001-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
163 - USER32: o Check if window has been destroyed before accessing
164 this pointer again in SendInternalMessage.
165 (fixes heap corruption in MS Visual C++ 4.2 install)
166 TODO: Needs a permanent and correct solution as this
167 can happen in several other places.
168 Also a potential problem in user32 classes (InfoPtr).
[5085]169 o Set last error to ERROR_INVALID_INDEX for invalid class word
170 index.
[5082]171
[5078]172 2001-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
173 - COMCTL32: o Register controls in LibMain, not in DLL_InitTerm
174 - KERNEL32: o Re-register dll if DosFreeModule failed with ERROR_INVALID_ACCESS
175 Dll refuses to unload if it has an active exitlist handler
176 or depends on a dll that registered an exitlist handler.
177 In this case the handle remains valid and the entrypoint of
178 the dll is NOT called for DLL_PROCESS_DETACH. The next time
179 DosLoadModule is called, the entrypoint (and RegisterLXDll)
180 isn't called (DLL_PROCESS_ATTACH).
181 WORKAROUND: Re-register the dll so future functions that
182 use this dll calls don't fail.
183 (fixes crash in shell32 in TextPad 4)
184 o shared & code heap umalloc changed (now more meaningful debug
185 messages in case of heap corruption)
186 - USER32: o WM_MINIMIZE/WS_MAXIMIZE support added to CreateWindow
[5114]187 (fixes size of main InstallShield window for Microsoft Visual
[5078]188 C++ 4.2)
[5079]189 o Fixed FS corruption in DIALOG_DlgDirList (c library function calls)
[5078]190
[5069]191 2001-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
192 - KERNEL32: o Standard in/out/error handle fix. Disable change during
193 console init.
194 (fixes output of console applications; input doesn't work well yet)
[5114]195 - USER32: o Dialog control fix. Creating them with CreateWindowExW does not
[5071]196 work since our standard user32 controls are still ASCII.
197 (fixes missing icon control in Acrobat Distiller window)
[5069]198
199 2001-02-08: Michal Necasek <michalnec@volny.cz>
200 - KERNEL32: o RtlUnwind bugfix
201
[5064]202 2001-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
203 - USER32: o Wrong error set in GetDlgItem. Must be ERROR_CONTROL_ID_NOT_FOUND.
204 (verified in NT4, SP6)
205
[5059]206 2001-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
207 - USER32: o Get/SetWindowLongA/W, Get/SetWindowWord: must set
208 last error to ERROR_INVALID_WINDOW_HANDLE if window not found.
209 (verified in NT4, SP6)
210 Must also return ERROR_INVALID_INDEX if index is out of range.
211 (used to return ERROR_INVALID_PARAMETER) (verified in NT4, SP6)
212 o Temporary hack to force focus to newly created window
213 (if no Odin window has focus after sending WM_ACTIVATE, set
214 focus to window that received the activate message)
215 (fixes wrong keyboard focus in RealPlayer 8)
216
[5055]217 2001-02-02: Sander van Leeuwen <sandervl@xs4all.nl>
218 - USER32: o DrawEdge bugfixes (signed/unsigned char mismatches)
219 (fixes lines in properties dialog of RealPlayer 8)
220 o Fixed incorrect rounding in dialog control size calculation
221 (fixes wrong height of some dialog controls (rp8 pref. dialog lines))
222 o Don't unregister class if there are still windows that use it.
223
[5054]224 2001-02-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
225 - Win32k: o Added option for the All-In-One-Object fix to be able
226 to debug PE executables thru the ICAT. Works with pe2lx
227 and win32k.sys.
228 -1<+|-|[*]>
229 +: Applied when needed. (checked)
230 -: Never applied (use this to debug). (not checked)
231 *: Allways applied. (default) (gray)
232 It's also added to Win32kCC as a three state checkbutton.
[5114]233
234 WARNING! This option should only be used for debugging
235 and will cause your system to crash if used with based
[5054]236 images!
[5114]237 - tools\Common:
[5054]238 o Minor changes in the fileformat classes to use kFile.
239
[5042]240 2001-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
241 - GDI32: o LineDDA fix (wrong calling convention)
242 (fixes crash in Solitaire)
243 - USER32: o clientHeight bugfix. Check hwnd instead of pHps->hwnd.
244 (pHps can be NULL)
245 (fixes crash in Solitaire)
246 - INSTALL: o Include ChangeLog-2001 in daily build
[5114]247 - COMDLG32: o Merged some changes from Wine (extra notification in
[5043]248 FileOpenDlgProc95 & OFN_NOCHANGEDIR support (also added
249 to Unicode version of file open dialog))
250 o Removed workaround for Acrobat Reader file open dialog
251 (Wine update fixed it)
Note: See TracBrowser for help on using the repository browser.