source: trunk/changelog@ 6312

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

* empty log message *

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