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