source: trunk/changelog@ 7017

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

* empty log message *

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