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