1 | /* $Id: changelog,v 1.1354 2001-04-10 17:08:15 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - PELDR: o Print module name that contributed to the failure of
|
---|
5 | loading kernel32.
|
---|
6 |
|
---|
7 | 2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
8 | - WINMM: o Clean up DirectAudio thread properly.
|
---|
9 |
|
---|
10 | 2001-04-05: Sofiya (sofiya@din.or.jp)
|
---|
11 | - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
|
---|
12 | - srclen <= -1 -> calculate length (docs say only for -1)
|
---|
13 | - source and destination pointer can't be the same (as docs also claim)
|
---|
14 | (verified in Windows ME & Windows NT4, SP6)
|
---|
15 |
|
---|
16 | 2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
17 | - USER32: o Rewrote ShowCursor
|
---|
18 |
|
---|
19 | 2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
20 | - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
|
---|
21 | o lstrcpynWtoA & lstrcpynAtoW fixes
|
---|
22 | o Removed WideCharToLocal & LocalToWideChar
|
---|
23 | - INCLUDE\unicode.h:
|
---|
24 | o AsciiToUnicode* & UnicodeToAscii* functions implemented
|
---|
25 | with functions in heapstring.h
|
---|
26 | - * o Compile fixes due to header changes
|
---|
27 |
|
---|
28 | 2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
29 | - DDRAW: o Only reset physical palette in DirectDraw destructor if
|
---|
30 | palette was really changed.
|
---|
31 | (gets rid of excessive screen redraws in DXView)
|
---|
32 | - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
|
---|
33 | o Return GetUserDefaultLangID in GetSystemDefaultLangID
|
---|
34 | o Ported Wine's codepage, string & unicode functions (codepage.cpp)
|
---|
35 | o Ported Wine's codepage unicode conversion functions & tables
|
---|
36 | (kernel32\unicode)
|
---|
37 | o Rewrote string functions (heapstring.cpp) to use new unicode
|
---|
38 | functions.
|
---|
39 | - USER32: o Ported Wine's Char* functions
|
---|
40 | TODO: IsCharAlphaA & IsCharAlphaNumericA
|
---|
41 |
|
---|
42 | 2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
43 | - USER32: o Mouse message translation fix (check capture)
|
---|
44 | o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
|
---|
45 | (fixes file dialogs with OFN_ENABLETEMPLATE style)
|
---|
46 | Verified behaviour in NT4, SP6 with DSShow sample
|
---|
47 | - about dialog with DS_CONTROL -> no titlebar
|
---|
48 | - file open dialog without DS_CONTROL -> titlebar + moveable
|
---|
49 | 2nd dialog
|
---|
50 | o Temporary workaround for file dialogs with template dialog child.
|
---|
51 | They don't redraw when switching directories. For some reason
|
---|
52 | the new child's (syslistview32) update rectangle stays empty
|
---|
53 | after its parent is made visible with ShowWindow
|
---|
54 | TODO: find real cause
|
---|
55 | - MSACM32: o Ported latest Wine version
|
---|
56 | - WINMM: o Ported latest Wine driver.c (necessary for msacm32 update)
|
---|
57 | - DDRAW: o Back buffer fix; setup surface descriptor structure and
|
---|
58 | don't clear DDSCAPS_BACKBUFFER flag
|
---|
59 | (fix for WinDVD)
|
---|
60 | o SurfLock: hEvent can be 0 as long as the DDLOCK_EVENT flag
|
---|
61 | isn't set.
|
---|
62 | Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
|
---|
63 | (fix for WinDVD)
|
---|
64 | - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
|
---|
65 | correct version of the pe loader (PE/PEC)
|
---|
66 |
|
---|
67 | 2001-04-02: Michal Necasek <michalnec@volny.cz>
|
---|
68 | - KERNEL32: o Fix for importing from executable
|
---|
69 | (fixes Blade Runner)
|
---|
70 | - TESTAPP\EXCEPTIONS:
|
---|
71 | o Small test apps to test exception handling
|
---|
72 |
|
---|
73 | 2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
74 | - WININET: o Added missing exports to wininet.def
|
---|
75 | - KERNEL32: o Removed yesterday's codepage change.
|
---|
76 | (breaks Opera)
|
---|
77 | - WINMM: o Increased nr of DART buffers used for wave playback
|
---|
78 | - ODININST o Moved kernel32 init code into odininst
|
---|
79 | o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
|
---|
80 | registry key with international settings
|
---|
81 | - USER32: o Create dialog controls with CreateWindowExW
|
---|
82 | o Use correct SendMessage(A/W) call during CreateWindow
|
---|
83 |
|
---|