source: trunk/changelog@ 5140

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

* empty log message *

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