1 | /* $Id: changelog,v 1.974 2000-06-07 21:46:52 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2000-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - USER32: Fixed wrong dispatch of WM_NCHITTEST
|
---|
5 | Fixed DC leak in EndPaint (reset hps type to TYPE_1)
|
---|
6 | -> resulted in out of memory and very slow PM operations
|
---|
7 | -> ICQ 2000a install now finishes (used to run out of mem)
|
---|
8 | Rewrote window management; now one PM window (non-frame)
|
---|
9 | is created for each win32 window (used to be a frame/client
|
---|
10 | pair)
|
---|
11 | -> speeds up drawing & fixes some repaint problems
|
---|
12 | Window coordinates (internally stored) are now relative
|
---|
13 | to window parent (or screen coord. if no parent); client
|
---|
14 | coordinates relative to the frame window
|
---|
15 | GetParent now returns owner if toplevel window
|
---|
16 | SetParent hides and shows window when changing parent
|
---|
17 | Added support for DCX_USESTYLE, DCX_CLIPSIBLINGS, DCX_CLIPCHILDREN
|
---|
18 | and DCX_PARENTCLIP in GetDCEx
|
---|
19 | Rewrote Set/GetWindowPlacement + SetInternalWindowPos (Wine port)
|
---|
20 | Manual minimize, maximize & restore in ShowWindow + fixes
|
---|
21 | TODO: Repaint problems, move child windows when client position/size
|
---|
22 | changes
|
---|
23 | SetParent/GetParent fixes for desktop parent.
|
---|
24 | - SHELL32: Disabled system tray window for now. (appears in top/right
|
---|
25 | of the desktop otherwise)
|
---|
26 |
|
---|
27 | 2000-06-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
|
---|
28 | - WINMM: Don't start playback when WaveOutRestart is called
|
---|
29 | before any buffers have been added.
|
---|
30 | Clear WHDR_INQUEUE bit for buffers returned in WaveOutReset
|
---|
31 |
|
---|
32 | 2000-06-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
33 | - Win32k/REXX: Rewrote the REXX stub program in assembly.
|
---|
34 | (exe size: 688 bytes) Might be able to embedd it in
|
---|
35 | win32k.sys... (not priority)
|
---|
36 |
|
---|
37 | 2000-06-02: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
|
---|
38 | - SHELL32: Systray class registered with wrong name
|
---|
39 |
|
---|
40 | 2000-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
41 | - GDI32/USER32: Moved GetClipRgn & GetClipBox into user32 (dc.cpp)
|
---|
42 | - GDI32: Added more logging
|
---|
43 | - KERNEL32: Rewrote CompareFileTime, DeleteFileA
|
---|
44 | Put file io apis in separate handlemanager object class
|
---|
45 | Rewrote most file io apis; includes support for 64 bits file
|
---|
46 | pointer/size:
|
---|
47 | - CreateFile/OpenFile/DuplicateHandle/CloseHandle
|
---|
48 | - ReadFile(Ex)/WriteFileEx/GetFileType/GetFileInformationByHandle
|
---|
49 | - SetEndOfFile/SetFileTime/GetFileTime/GetFileSize
|
---|
50 | - SetFilePointer/LockFile(Ex)/UnlockFile(Ex)/FlushFileBuffers
|
---|
51 | Fixed some OpenFile bugs. Put Read/WriteFileEx into file
|
---|
52 | io class. Fixed LockFileEx/UnlockFileEx
|
---|
53 | New file apis use OS/2 apis now; overlapped IO not yet
|
---|
54 | supported.
|
---|
55 | - SHELL32: Added ISF_MyComputer_fnParseDisplayName from latest Wine
|
---|
56 | Fixes open file dialog
|
---|