source: trunk/changelog@ 6322

Last change on this file since 6322 was 6322, checked in by sandervl, 24 years ago

* empty log message *

File size: 10.6 KB
Line 
1/* $Id: changelog,v 1.1596 2001-07-13 19:37:31 sandervl Exp $ */
2
3 2001-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
4 - COMDLG32: o Fix for windows 3.1 style file dialog
5 - COMCTL32: o Bad listview pointer checks cause crashes in details
6 view of file dialogs
7 (TODO: Details view is still not right)
8 - KERNEL32: o Check for NULL pointer in lstrlenA/W
9 (fixes crash during AutoCAD 14 install)
10 - USER32: o Removed very old check for negative x or y coordinates during
11 window creation.
12 (file open dialog in InstallShield doesn't show weird edit control
13 anymore and the MS Word 97 main window looks better now)
14 o RegisterClassA/W: check icon first before copying it
15 (gets rid of some annoying warnings in the logfile)
16 - GDI32: o Change BITMAPINFO height if negative
17 (fixes failing StretchDIBits calls with Matrox display driver)
18
19 2001-07-12: Sander van Leeuwen <sandervl@xs4all.nl>
20 - KERNEL32: o Atom fixes
21 - OLEAUT32: o Added RegisterActiveObject, RevokeActiveObject &
22 GetActiveObject from Wine.
23
24 2001-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
25 - COMDLG32: o Don't clear filename when selecting of switching
26 directory is file open/save dialog.
27
28 2001-07-10: knut st. osmundsen <kosmunds@csc.com>:
29 - WIN32K: o Made DosKillProcessEx framework.
30 o Tried to fix missing unlocks of environment block.
31 - KERNEL32: o Tried to fix missing unlocks of environment block.
32 o Fixed module not found problem when a Pe2Lx is dynamically
33 loaded several times.
34 o Defined env.var. ODIN32.FAIL_IF_UNREGISTEREDLX to make
35 LoadLibraryEx fail on unregistered LX dlls. This will fix
36 the most annoying int 3's when starting Opera on debug Odin.
37 (Two int 3 per netscape/2 plugin checked.)
38
39 2001-07-09: knut st. osmundsen <kosmunds@csc.com>:
40 - CRTDLL: o When renaming dlls we still use the original importlibrary
41 and .def-file names. ORGTARGET exist for that purpose.
42 - NTDLL: o Link with crtdll.lib.
43 - VERSION: o Link with crtdll.lib.
44 - WIN32K: o Updated LieList with CrtDll -> CrtDll32 renaming.
45
46 2001-07-09: Sander van Leeuwen <sandervl@xs4all.nl>
47 - KERNEL32: o Directly import registry functions from REGISTRY.DLL
48 - GDI32: o Never use object handle 0
49 (fixes bad icons in dialogs)
50 - USER32: o Same edit fix as applied yesterday, but this time for
51 single line edit control painting.
52 (Opera url editbox now displays selected text properly)
53
54 2001-07-08: Achim Hasenmueller <achimha@innotek.de>
55 - WSOCK32: o error message to human readable text translation
56 for WSASetLastError (debug version)
57 o implemented IPPROTO_IP support for setsockopt
58 (not fully done)
59 o reset semaphore in WSAEnumNetworkEvents
60 - USER32: o deleted user32\old. It is still in the CVS attic
61 so in case you need it, you can get it from CVS
62
63 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
64 - USER32: o Some icon fixes
65 o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
66 jump back to last click position when moving the mouse
67 outside the scroll window during scrolling.
68 o Changed menu behaviour in OS/2 mode; no mouse tracking
69 when right or left mouse button not pressed.
70 o Clipboard (Get/SetClipboardData: must translated open32
71 to kernel32 global memory handles (due to Global memory
72 api rewrite)
73 o Key translation for arrow keys and insert/del, home/end, page up/down
74 added (WM_CHAR message translation)
75 o Edit control bugfix for drawing selected text
76 - KERNEL32: o More pointer checks added to GlobalLock/Unlock
77 o Add default rename entry for crtdll
78 o Fixed FS corruption in atom functions (wrapper for LookupAtom)
79 - CRTDLL: o Renamed to crtdll32 to avoid problems with some Lotus
80 apps that come with their own crtdll
81 - NTDLL: o Link with crtdll32.lib
82 - VERSION: o Link with crtdll32.lib
83 - SHLWAPI: o Link with crtdll32.lib
84 - PELDR: o Fix for file not found error
85
86 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
87 - KERNEL32: o Added call in initterm to tell win32k where the Odin32
88 environment block is. (Its in Open32, and I don't think
89 it is reallocated.)
90 o Added early initiation of Win32k loaded EXE. This corrected
91 problems with GetModuleHandleA returing -1 to MSVCRT.
92 - WIN32K: o Fixed environment block problem. The environment variables is
93 not updated in the original env.block. So, win32k needs to
94 be told where to find the Odin32 environment block to correctly
95 find dlls using the PATH.
96 o Corrected crosspage fixup bug.
97 o Set no internal fixups flag in LX header for most executables
98 in an attempt to convice OS/2 to load them where they wanna be
99 loaded (usually 0x00400000).
100 o Can now tell difference between the debug kernels.
101
102 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
103 - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
104 o Fixed GetAtomNameW
105 - GDI32: o Don't use Open32 IsBad* memory functions directly
106 - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
107 memory handles (due to Global memory api rewrite)
108
109 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
110 - WS2_32: o import WSAEventSelect from WSOCK32 (although a
111 Winsock 2.0 API, it makes more sense to be implemented
112 in the Winsock 1.1 stack)
113 o import WSAEnumNetworkEvents from WSOCK32 (same reason)
114 - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
115 window handle and event semaphore notification
116 o implemented WSAEventSelect
117 o implemented WSAEnumNetworkEvents (not correct)
118
119 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
120 - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
121 to fix SYS2048 during RealPlayer install.
122 - WIN32K: o Fixed the DBExpert bug in the longdllname code.
123 BTW. Thanks to Randell at Sundial Systems and Alex Newman
124 for reporting this and begin very helpful tracking it down.
125 o The longdllname feature now differs from the OS/2 loader on
126 one points: <br>
127 It is able to find (DosQueryModuleHandle) for dlls using
128 internal names which includes the .DLL extention. <br>
129 The longdllname feature don't currently support names with
130 extention .DLL like extentions with base name lengths from
131 4-7 chars. I will fix this some day.<br>
132
133 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
134 - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
135 o GlobalAlloc must return pointers aligned at 8 byte boundary
136 (SDK docs + verified in NT4, SP6)
137 o Better checks in GlobalFree for invalid handles/pointers
138 (InvestmentView seems to call it with a GDI handle; why??)
139 o LocalReAlloc bugfix
140 - USER32: o Must return 16 bits icon & cursor handles
141 (fixes crash in Acrobat Reader 4)
142 - GDI32: o GetDIBits must only return color information when lpvBits
143 is not NULL.
144 (fixes Opera crash (heap corruption) with new heap code)
145 - PELDR: o Report error when file not found.
146
147 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
148 - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
149 o WinHelpA fixes (use shared memory for sending information
150 to winhlp32)
151 - KERNEL32: o Added GlobalFix and GlobalUnfix
152 o Local memory functions now use Global memory functions
153 o Ported Wine Global memory functions (we no longer depend
154 on Open32 for these)
155
156 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
157 - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
158 o VkKeyScanExA/W: call VkKeyScanA/W
159 o MapVirtualKeyExA/W: call MapVirtualKeyA/W
160 o SetParent bugfix; even though the win32 coordinates might
161 not change, the PM coordinates can. We must make sure the
162 child stays at the same position (y) relative to the
163 (new) parent.
164 (Cool Edit Pro LE play buttons now at the right position)
165 o Send WM_SETICON to frame window with converted win32 icon
166 (application icon now visible in task list)
167 o Quick fix for window creation:
168 Before a window has processed WM_NCCREATE:
169 - GetTopWindow can't return that window handle
170 - GetWindow(parent, GW_CHILD) can't return that window handle
171 - IsChild works
172 TODO: Does this affect more functions?? (other GetWindow ops)
173 (verified in NT4, SP6)
174 TODO: Must add window to parent's child list after WM_NCCREATE
175 and rewrite GetWindow & GetTopWindow
176 (fix for crash in MP3 Explorer)
177
178 - GDI32: o Workaround for applications that depend on 16 bits
179 GDI object handles.
180 (TODO: must create our own 16 bits handles)
181 (fixes crash in Cool Edit Pro LE)
182
183 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
184 - KERNEL32: o Improoved the Unhandled exception message by
185 trying to provide modulename and some kind of obj/offset.
186 - FastDep: o (synced with OS2Tools) Make better use of data in evt.
187 existing .depend file so that only changed files are processed.
188
189 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
190 - KERNEL32: o Executable load fix
191 (fixes crash during RealPlayer 8 install)
192 o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
193 - USER32: o ToAscii & GetKeyboardState fixes
194 (for Putty keyboard input)
Note: See TracBrowser for help on using the repository browser.