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