source: trunk/changelog@ 6321

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

* empty log message *

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