source: trunk/changelog@ 6306

Last change on this file since 6306 was 6306, checked in by bird, 24 years ago

* empty log message *

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