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