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