source: trunk/changelog@ 5079

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

* empty log message *

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