source: trunk/changelog@ 5134

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

* empty log message *

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