1 | /* $Id: changelog,v 1.1361 2001-04-16 06:42:34 bird Exp $ */
|
---|
2 |
|
---|
3 | 2001-04-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
4 | - DSOUND: o Removed pmwinx.lib from makefile. Wasn't used; and it had
|
---|
5 | bad path (ie. no path).
|
---|
6 |
|
---|
7 | 2001-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
8 | - KERNEL32: o RegQueryValueExA/W broken. Reserved & type parameters reversed.
|
---|
9 | (fixes crash in Notepad and possibly solves many other problems)
|
---|
10 | - USER32: o SetCapture change; return immediately when new capture window
|
---|
11 | is the same as old one.
|
---|
12 | (fixes high cpu load in PowerDVD when holding mouse cursor over
|
---|
13 | control window; PM kept sending WM_MOUSEMOVE messages)
|
---|
14 | o Rewrote ClipCursor & GetClipCursor
|
---|
15 | o Set PM style flags when WS_CLIPCHILDREN or WS_CLIPSIBLINGS
|
---|
16 | flag is changed by the application using SetWindowLong.
|
---|
17 | (fixes Lotus Notes size bar & upper left rectangle painting)
|
---|
18 |
|
---|
19 | 2001-04-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
20 | - configure,win32k:
|
---|
21 | o Added option to Configure.cmd, -w, which omittes building
|
---|
22 | of Win32k.sys.
|
---|
23 |
|
---|
24 | 2001-04-12: Sofiya (sofiya@din.or.jp)
|
---|
25 | - USER32: o Fixes for DBCS strings
|
---|
26 |
|
---|
27 | 2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
28 | - PELDR: o Print module name that contributed to the failure of
|
---|
29 | loading kernel32.
|
---|
30 |
|
---|
31 | 2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
32 | - WINMM: o Clean up DirectAudio thread properly.
|
---|
33 |
|
---|
34 | 2001-04-05: Sofiya (sofiya@din.or.jp)
|
---|
35 | - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
|
---|
36 | - srclen <= -1 -> calculate length (docs say only for -1)
|
---|
37 | - source and destination pointer can't be the same (as docs also claim)
|
---|
38 | (verified in Windows ME & Windows NT4, SP6)
|
---|
39 |
|
---|
40 | 2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
41 | - USER32: o Rewrote ShowCursor
|
---|
42 |
|
---|
43 | 2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
44 | - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
|
---|
45 | o lstrcpynWtoA & lstrcpynAtoW fixes
|
---|
46 | o Removed WideCharToLocal & LocalToWideChar
|
---|
47 | - INCLUDE\unicode.h:
|
---|
48 | o AsciiToUnicode* & UnicodeToAscii* functions implemented
|
---|
49 | with functions in heapstring.h
|
---|
50 | - * o Compile fixes due to header changes
|
---|
51 |
|
---|
52 | 2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
53 | - DDRAW: o Only reset physical palette in DirectDraw destructor if
|
---|
54 | palette was really changed.
|
---|
55 | (gets rid of excessive screen redraws in DXView)
|
---|
56 | - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
|
---|
57 | o Return GetUserDefaultLangID in GetSystemDefaultLangID
|
---|
58 | o Ported Wine's codepage, string & unicode functions (codepage.cpp)
|
---|
59 | o Ported Wine's codepage unicode conversion functions & tables
|
---|
60 | (kernel32\unicode)
|
---|
61 | o Rewrote string functions (heapstring.cpp) to use new unicode
|
---|
62 | functions.
|
---|
63 | - USER32: o Ported Wine's Char* functions
|
---|
64 | TODO: IsCharAlphaA & IsCharAlphaNumericA
|
---|
65 |
|
---|
66 | 2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
67 | - USER32: o Mouse message translation fix (check capture)
|
---|
68 | o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
|
---|
69 | (fixes file dialogs with OFN_ENABLETEMPLATE style)
|
---|
70 | Verified behaviour in NT4, SP6 with DSShow sample
|
---|
71 | - about dialog with DS_CONTROL -> no titlebar
|
---|
72 | - file open dialog without DS_CONTROL -> titlebar + moveable
|
---|
73 | 2nd dialog
|
---|
74 | o Temporary workaround for file dialogs with template dialog child.
|
---|
75 | They don't redraw when switching directories. For some reason
|
---|
76 | the new child's (syslistview32) update rectangle stays empty
|
---|
77 | after its parent is made visible with ShowWindow
|
---|
78 | TODO: find real cause
|
---|
79 | - MSACM32: o Ported latest Wine version
|
---|
80 | - WINMM: o Ported latest Wine driver.c (necessary for msacm32 update)
|
---|
81 | - DDRAW: o Back buffer fix; setup surface descriptor structure and
|
---|
82 | don't clear DDSCAPS_BACKBUFFER flag
|
---|
83 | (fix for WinDVD)
|
---|
84 | o SurfLock: hEvent can be 0 as long as the DDLOCK_EVENT flag
|
---|
85 | isn't set.
|
---|
86 | Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
|
---|
87 | (fix for WinDVD)
|
---|
88 | - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
|
---|
89 | correct version of the pe loader (PE/PEC)
|
---|
90 |
|
---|
91 | 2001-04-02: Michal Necasek <michalnec@volny.cz>
|
---|
92 | - KERNEL32: o Fix for importing from executable
|
---|
93 | (fixes Blade Runner)
|
---|
94 | - TESTAPP\EXCEPTIONS:
|
---|
95 | o Small test apps to test exception handling
|
---|
96 |
|
---|
97 | 2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
98 | - WININET: o Added missing exports to wininet.def
|
---|
99 | - KERNEL32: o Removed yesterday's codepage change.
|
---|
100 | (breaks Opera)
|
---|
101 | - WINMM: o Increased nr of DART buffers used for wave playback
|
---|
102 | - ODININST o Moved kernel32 init code into odininst
|
---|
103 | o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
|
---|
104 | registry key with international settings
|
---|
105 | - USER32: o Create dialog controls with CreateWindowExW
|
---|
106 | o Use correct SendMessage(A/W) call during CreateWindow
|
---|
107 |
|
---|