source: trunk/changelog@ 6244

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

* empty log message *

File size: 6.7 KB
Line 
1/* $Id: changelog,v 1.1577 2001-07-08 08:06:48 sandervl Exp $ */
2
3 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o Some icon fixes
5 o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
6 jump back to last click position when moving the mouse
7 outside the scroll window during scrolling.
8 o Changed menu behaviour in OS/2 mode; no mouse tracking
9 when right or left mouse button not pressed.
10 - KERNEL32: o More pointer checks added to GlobalLock/Unlock
11
12 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
13 - KERNEL32: o Added call in initterm to tell win32k where the Odin32
14 environment block is. (Its in Open32, and I don't think
15 it is reallocated.)
16 o Added early initiation of Win32k loaded EXE. This corrected
17 problems with GetModuleHandleA returing -1 to MSVCRT.
18 - WIN32K: o Fixed environment block problem. The environment variables is
19 not updated in the original env.block. So, win32k needs to
20 be told where to find the Odin32 environment block to correctly
21 find dlls using the PATH.
22 o Corrected crosspage fixup bug.
23 o Set no internal fixups flag in LX header for most executables
24 in an attempt to convice OS/2 to load them where they wanna be
25 loaded (usually 0x00400000).
26 o Can now tell difference between the debug kernels.
27
28 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
29 - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
30 o Fixed GetAtomNameW
31 - GDI32: o Don't use Open32 IsBad* memory functions directly
32 - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
33 memory handles (due to Global memory api rewrite)
34
35 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
36 - WS2_32: o import WSAEventSelect from WSOCK32 (although a
37 Winsock 2.0 API, it makes more sense to be implemented
38 in the Winsock 1.1 stack)
39 o import WSAEnumNetworkEvents from WSOCK32 (same reason)
40 - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
41 window handle and event semaphore notification
42 o implemented WSAEventSelect
43 o implemented WSAEnumNetworkEvents (not correct)
44
45 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
46 - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
47 to fix SYS2048 during RealPlayer install.
48 - WIN32K: o Fixed the DBExpert bug in the longdllname code.
49 BTW. Thanks to Randell at Sundial Systems and Alex Newman
50 for reporting this and begin very helpful tracking it down.
51 o The longdllname feature now differs from the OS/2 loader on
52 one points: <br>
53 It is able to find (DosQueryModuleHandle) for dlls using
54 internal names which includes the .DLL extention. <br>
55 The longdllname feature don't currently support names with
56 extention .DLL like extentions with base name lengths from
57 4-7 chars. I will fix this some day.<br>
58
59 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
60 - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
61 o GlobalAlloc must return pointers aligned at 8 byte boundary
62 (SDK docs + verified in NT4, SP6)
63 o Better checks in GlobalFree for invalid handles/pointers
64 (InvestmentView seems to call it with a GDI handle; why??)
65 o LocalReAlloc bugfix
66 - USER32: o Must return 16 bits icon & cursor handles
67 (fixes crash in Acrobat Reader 4)
68 - GDI32: o GetDIBits must only return color information when lpvBits
69 is not NULL.
70 (fixes Opera crash (heap corruption) with new heap code)
71 - PELDR: o Report error when file not found.
72
73 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
74 - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
75 o WinHelpA fixes (use shared memory for sending information
76 to winhlp32)
77 - KERNEL32: o Added GlobalFix and GlobalUnfix
78 o Local memory functions now use Global memory functions
79 o Ported Wine Global memory functions (we no longer depend
80 on Open32 for these)
81
82 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
83 - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
84 o VkKeyScanExA/W: call VkKeyScanA/W
85 o MapVirtualKeyExA/W: call MapVirtualKeyA/W
86 o SetParent bugfix; even though the win32 coordinates might
87 not change, the PM coordinates can. We must make sure the
88 child stays at the same position (y) relative to the
89 (new) parent.
90 (Cool Edit Pro LE play buttons now at the right position)
91 o Send WM_SETICON to frame window with converted win32 icon
92 (application icon now visible in task list)
93 o Quick fix for window creation:
94 Before a window has processed WM_NCCREATE:
95 - GetTopWindow can't return that window handle
96 - GetWindow(parent, GW_CHILD) can't return that window handle
97 - IsChild works
98 TODO: Does this affect more functions?? (other GetWindow ops)
99 (verified in NT4, SP6)
100 TODO: Must add window to parent's child list after WM_NCCREATE
101 and rewrite GetWindow & GetTopWindow
102 (fix for crash in MP3 Explorer)
103
104 - GDI32: o Workaround for applications that depend on 16 bits
105 GDI object handles.
106 (TODO: must create our own 16 bits handles)
107 (fixes crash in Cool Edit Pro LE)
108
109 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
110 - KERNEL32: o Improoved the Unhandled exception message by
111 trying to provide modulename and some kind of obj/offset.
112 - FastDep: o (synced with OS2Tools) Make better use of data in evt.
113 existing .depend file so that only changed files are processed.
114
115 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
116 - KERNEL32: o Executable load fix
117 (fixes crash during RealPlayer 8 install)
118 o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
119 - USER32: o ToAscii & GetKeyboardState fixes
120 (for Putty keyboard input)
Note: See TracBrowser for help on using the repository browser.