1 | /* $Id: changelog,v 1.1570 2001-07-07 10:45:54 achimha Exp $ */
|
---|
2 |
|
---|
3 | 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
|
---|
4 | - WS2_32: o import WSAEventSelect from WSOCK32 (although a
|
---|
5 | Winsock 2.0 API, it makes more sense to be implemented
|
---|
6 | in the Winsock 1.1 stack)
|
---|
7 | - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
|
---|
8 | window handle and event semaphore notification
|
---|
9 | o implemented WSAEventSelect
|
---|
10 |
|
---|
11 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>:
|
---|
12 | - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
|
---|
13 | to fix SYS2048 during RealPlayer install.
|
---|
14 | - WIN32K: o Fixed the DBExpert bug in the longdllname code.
|
---|
15 | BTW. Thanks to Randell at Sunnidal Systems and Alex Newman
|
---|
16 | for reporting this and begin very helpful tracking it down.
|
---|
17 | o The longdllname feature now differs from the OS/2 loader on
|
---|
18 | one points: <br>
|
---|
19 | It is able to find (DosQueryModuleHandle) for dlls using
|
---|
20 | internal names which includes the .DLL extention. <br>
|
---|
21 | The longdllname feature don't currently support names with
|
---|
22 | extention .DLL like extentions with base name lengths from
|
---|
23 | 4-7 chars. I will fix this some day.<br>
|
---|
24 |
|
---|
25 | 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
26 | - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
|
---|
27 | o GlobalAlloc must return pointers aligned at 8 byte boundary
|
---|
28 | (SDK docs + verified in NT4, SP6)
|
---|
29 | o Better checks in GlobalFree for invalid handles/pointers
|
---|
30 | (InvestmentView seems to call it with a GDI handle; why??)
|
---|
31 | o LocalReAlloc bugfix
|
---|
32 | - USER32: o Must return 16 bits icon & cursor handles
|
---|
33 | (fixes crash in Acrobat Reader 4)
|
---|
34 | - GDI32: o GetDIBits must only return color information when lpvBits
|
---|
35 | is not NULL.
|
---|
36 | (fixes Opera crash (heap corruption) with new heap code)
|
---|
37 | - PELDR: o Report error when file not found.
|
---|
38 |
|
---|
39 | 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
40 | - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
|
---|
41 | o WinHelpA fixes (use shared memory for sending information
|
---|
42 | to winhlp32)
|
---|
43 | - KERNEL32: o Added GlobalFix and GlobalUnfix
|
---|
44 | o Local memory functions now use Global memory functions
|
---|
45 | o Ported Wine Global memory functions (we no longer depend
|
---|
46 | on Open32 for these)
|
---|
47 |
|
---|
48 | 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
49 | - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
|
---|
50 | o VkKeyScanExA/W: call VkKeyScanA/W
|
---|
51 | o MapVirtualKeyExA/W: call MapVirtualKeyA/W
|
---|
52 | o SetParent bugfix; even though the win32 coordinates might
|
---|
53 | not change, the PM coordinates can. We must make sure the
|
---|
54 | child stays at the same position (y) relative to the
|
---|
55 | (new) parent.
|
---|
56 | (Cool Edit Pro LE play buttons now at the right position)
|
---|
57 | o Send WM_SETICON to frame window with converted win32 icon
|
---|
58 | (application icon now visible in task list)
|
---|
59 | o Quick fix for window creation:
|
---|
60 | Before a window has processed WM_NCCREATE:
|
---|
61 | - GetTopWindow can't return that window handle
|
---|
62 | - GetWindow(parent, GW_CHILD) can't return that window handle
|
---|
63 | - IsChild works
|
---|
64 | TODO: Does this affect more functions?? (other GetWindow ops)
|
---|
65 | (verified in NT4, SP6)
|
---|
66 | TODO: Must add window to parent's child list after WM_NCCREATE
|
---|
67 | and rewrite GetWindow & GetTopWindow
|
---|
68 | (fix for crash in MP3 Explorer)
|
---|
69 |
|
---|
70 | - GDI32: o Workaround for applications that depend on 16 bits
|
---|
71 | GDI object handles.
|
---|
72 | (TODO: must create our own 16 bits handles)
|
---|
73 | (fixes crash in Cool Edit Pro LE)
|
---|
74 |
|
---|
75 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
|
---|
76 | - KERNEL32: o Improoved the Unhandled exception message by
|
---|
77 | trying to provide modulename and some kind of obj/offset.
|
---|
78 | - FastDep: o (synced with OS2Tools) Make better use of data in evt.
|
---|
79 | existing .depend file so that only changed files are processed.
|
---|
80 |
|
---|
81 | 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
82 | - KERNEL32: o Executable load fix
|
---|
83 | (fixes crash during RealPlayer 8 install)
|
---|
84 | o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
|
---|
85 | - USER32: o ToAscii & GetKeyboardState fixes
|
---|
86 | (for Putty keyboard input)
|
---|