source: trunk/changelog@ 5125

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

* empty log message *

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