source: trunk/changelog@ 7019

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

* empty log message *

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