1 | /* $Id: changelog,v 1.1734 2001-10-10 17:38:38 phaller Exp $ */
|
---|
2 |
|
---|
3 | 2001-10-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - USER32: o Do not blindly add ODIN_FUNCTION macros to functions that
|
---|
5 | get called very often. (like IsWindow, GetParent & IsWindowVisible)
|
---|
6 | This tends to make logfiles very big...
|
---|
7 | - WSOCK32: o Added IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_MULTICAST_LOOP &
|
---|
8 | IP_MULTICAST_TTL to setsockopt
|
---|
9 | o Add support for WS2_32 IPPROTO_IP options
|
---|
10 | - WS2_32: o Translate IPPROTO_IP options in setsockopt before calling
|
---|
11 | wsock32
|
---|
12 | - DDRAW: o Commented out DiveAcquire/DeaquireFrameBuffer for now
|
---|
13 | (surflock/unlock)
|
---|
14 |
|
---|
15 | 2001-10-10: Patrick Haller <patrick.haller@innotek.de>
|
---|
16 | - KERNEL32: o added IOCTL_CDROM_EJECT_MEDIA
|
---|
17 | IOCTL_CDROM_LOAD_MEDIA
|
---|
18 | IOCTL_CDROM_PAUSE_AUDIO
|
---|
19 | IOCTL_CDROM_STOP_AUDIO
|
---|
20 | IOCTL_CDROM_RESUME_AUDIO
|
---|
21 | IOCTL_CDROM_PLAY_AUDIO_MSF
|
---|
22 | o added IOCTL_STORAGE_EJECT_MEDIA
|
---|
23 | IOCTL_STORAGE_LOAD_MEDIA
|
---|
24 | IOCTL_DISK_EJECT_MEDIA
|
---|
25 | IOCTL_DISK_CHECK_VERIFY
|
---|
26 | - IPHLPAPI: o added fake version of GetAdaptersInfo()
|
---|
27 |
|
---|
28 | 2001-10-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
29 | - KERNEL32: o Image header page must be readonly
|
---|
30 | o Temporarily disabled high memory usage for heap
|
---|
31 |
|
---|
32 | 2001-10-08: Patrick Haller <patrick.haller@innotek.de>
|
---|
33 | - USER32: o enabled WH_KEYBOARD_LL hook, seems to work
|
---|
34 | o added further messages to wndmsg.cpp
|
---|
35 | - KERNEL32: o added further error codes to error2WinError
|
---|
36 |
|
---|
37 | 2001-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
38 | - USER32: o WM_WINDOWPOSCHANGED: activation fix; must clear FF_NOACTIVATESWP
|
---|
39 | if mp2 & AWP_ACTIVATE
|
---|
40 | (fixes activation of some inactive windows; used to be
|
---|
41 | activated but not brought to the top)
|
---|
42 |
|
---|
43 | 2001-10-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
44 | - DDRAW: o Don't use Dive for blitting to/from 8 bpp surfaces
|
---|
45 | - USER32: o Eliminated flickering during frame sizing due to
|
---|
46 | unnecessary drawing
|
---|
47 | o Fixed handling of WM_SIZING/WM_MOVING (changing rectangles)
|
---|
48 | o WM_TRACKFRAME: call Frame_SysCommandSizeMove with SC_MOVE+HTCAPTION
|
---|
49 |
|
---|
50 | 2001-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
51 | - QUARTZ/OLEAUT32:
|
---|
52 | o Wine 20011004 resync
|
---|
53 | - KERNEL32: o Reduce overhead for heap allocation
|
---|
54 | o Always allocate heap memory from high memory (if available)
|
---|
55 | o Allocate extra heap memory in 64kb units
|
---|
56 | MUST use 64kb here or else we are at risk of running out
|
---|
57 | of virtual memory space. (when allocating 4kb we actually
|
---|
58 | get 4kb + 60k uncommited)
|
---|
59 | (fixes out of resources error while loading big movies
|
---|
60 | in The Playa)
|
---|
61 |
|
---|
62 | 2001-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
63 | - DDRAW: o Added stretching support for blitting to the screen
|
---|
64 | (the Playa can now play movies in fullscreen mode)
|
---|
65 |
|
---|
66 | 2001-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
67 | - WINMM: o Allocate handle for new timer and verify handle
|
---|
68 | is valid before using it.
|
---|
69 | (prevents crashes when app attempts to delete timer twice
|
---|
70 | (DivX 4))
|
---|
71 | - DDRAW: o Fixed memory leaks in SurfBlt4 (rectangles)
|
---|
72 | o Take clipping into account in SurfBlt4. Windowed DirectDraw
|
---|
73 | blitting now seems to work well.
|
---|
74 | (only tried DivX 4; needs more testing)
|
---|
75 | - USER32: o Rewrote sizing & moving of windows (frame tracking)
|
---|
76 | (ported Wine version + fixed some bugs)
|
---|
77 | Some applications (e.g. RealPlayer) resize themselves
|
---|
78 | when receiving WM_SIZING msgs. Not possible to send those
|
---|
79 | with PM's frame tracking.
|
---|
80 | TODO: fix flickering of size border (dynamic drag off)
|
---|
81 | TODO: WM_SIZING handling not 100% correct yet
|
---|
82 | TODO: Must display size/move cursor when starting action
|
---|
83 | from system menu
|
---|
84 | o GetDCEx change; always call WinGetClipPS (!CS_OWNDC)
|
---|
85 | - OLEAUT32: o Wine update
|
---|
86 |
|
---|
87 | 2001-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
88 | - REGSVR32: o Must use LoadLibrary, not CoLoadLibrary
|
---|
89 | (Some dlls (divx codec) call CoFreeUnusedLibraries which
|
---|
90 | unloads the same dll if we use CoLoadLibrary (-> crash)
|
---|
91 | NT's regsvr32 doesn't use CoLoadLibrary either)
|
---|
92 | - USER32: o OSLibWinGetMsg bugfix
|
---|
93 |
|
---|
94 | 2001-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
95 | - USER32: o Lastest Wine revision of GetNextDlgGroupItem ported + modified
|
---|
96 |
|
---|