[5560] | 1 | /* $Id: changelog,v 1.1371 2001-04-21 11:23:59 sandervl Exp $ */
|
---|
[5313] | 2 |
|
---|
[5558] | 3 | 2001-04-21: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - KERNEL32: o DosWrite for stdout doesn't accept high addresses
|
---|
| 5 | o Rewrote EXC_CallHandler in assembly (copied compiler output
|
---|
| 6 | (opt. off))
|
---|
| 7 | No longer necessary to turn off optimizations for exceptions.cpp.
|
---|
[5560] | 8 | o Added partial implementation of GetLongPathNameA/W
|
---|
[5558] | 9 |
|
---|
[5555] | 10 | 2001-04-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 11 | - USER32: o Commented out RestoreCursor call in user32 exitlist handler.
|
---|
| 12 | Seems to cause PM hangs on some (a lot?) of machines for
|
---|
| 13 | reasons unknown.
|
---|
| 14 |
|
---|
[5552] | 15 | 2001-04-20: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 16 | - DSOUND: o Fixes / Workaround for PowerDVD 3.0
|
---|
| 17 | Crashed when allocating sound object for
|
---|
| 18 | 48kHz, 16-Bit, 4 channels
|
---|
| 19 | o dynamically size the internal mixing buffer
|
---|
| 20 | in DSMIXER
|
---|
| 21 |
|
---|
[5543] | 22 | 2001-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 23 | - KERNEL32: o Fail properly when a dll can't be found or loaded.
|
---|
| 24 | - SHELL32: o Ported latest shlfileop.c from Wine. (include functional
|
---|
| 25 | SHFileOperation).
|
---|
| 26 | TODO: Merge the rest.
|
---|
| 27 |
|
---|
[5541] | 28 | 2001-04-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 29 | - dailybuild:
|
---|
| 30 | o Adjusted to new build pattern.
|
---|
| 31 | o Copy all builds to local archive directory.
|
---|
| 32 | - tools\install:
|
---|
| 33 | o Added Xx2Lx.
|
---|
| 34 | - Readme.txt:
|
---|
| 35 | o Changed Pe2Lx to Xx2Lx.
|
---|
| 36 |
|
---|
[5537] | 37 | 2001-04-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 38 | - Unicode: o Minor addjustments to makefile. CFLAGS is the correct
|
---|
| 39 | place to addjust flags for C compilation. And flags
|
---|
| 40 | are compiler specific.. wrapped it in CCENV checks.
|
---|
| 41 | - Tools\Common:
|
---|
| 42 | o Revamped a couple of things - introduced interface classes.
|
---|
| 43 | Not quite statisfied yet, but it's working.
|
---|
| 44 | o Starting to make an kFileSDF class to access .SDF files
|
---|
| 45 | SDF = Structure Definition Files - used by PMDF. Contains
|
---|
| 46 | information about structures (struct _somthing_s).
|
---|
| 47 | Needs this information for win32k.
|
---|
| 48 | - Tools\Database:
|
---|
| 49 | o Recreate makefiles, new style. GD is not compiled any longer.
|
---|
| 50 | o Addjusted APIImport to fit changes in Tools\Common.
|
---|
| 51 | - Tools\ImpLib:
|
---|
| 52 | o Addjusted code to fit changes in Tools\Common.
|
---|
| 53 |
|
---|
[5515] | 54 | 2001-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 55 | - KERNEL32: o Fix for LoadLibrary(Ex)W. (free must not be called for
|
---|
| 56 | converted strings; use FreeAsciiString instead)
|
---|
[5517] | 57 | - TOOLS\WRC:o Ported latest wrc. (has proper ascii -> unicode conversion
|
---|
| 58 | and more features)
|
---|
[5537] | 59 | o Open files in binary mode only; fixes load failures for
|
---|
[5517] | 60 | shell32 icons (newlines were translated; bytes removed from
|
---|
| 61 | icon data)
|
---|
[5520] | 62 | - DPLAYX: o Compile fixes for header changes.
|
---|
[5517] | 63 | - include\odin.h:
|
---|
| 64 | o Changes for wrc. It chokes on calling conventions.
|
---|
| 65 | o Got rid of annoying 'unused struct' warnings
|
---|
[5515] | 66 |
|
---|
[5514] | 67 | 2001-04-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 68 | - DSOUND: o Removed pmwinx.lib from makefile. Wasn't used; and it had
|
---|
| 69 | bad path (ie. no path).
|
---|
| 70 |
|
---|
[5504] | 71 | 2001-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 72 | - KERNEL32: o RegQueryValueExA/W broken. Reserved & type parameters reversed.
|
---|
| 73 | (fixes crash in Notepad and possibly solves many other problems)
|
---|
[5506] | 74 | - USER32: o SetCapture change; return immediately when new capture window
|
---|
| 75 | is the same as old one.
|
---|
| 76 | (fixes high cpu load in PowerDVD when holding mouse cursor over
|
---|
| 77 | control window; PM kept sending WM_MOUSEMOVE messages)
|
---|
[5508] | 78 | o Rewrote ClipCursor & GetClipCursor
|
---|
[5510] | 79 | o Set PM style flags when WS_CLIPCHILDREN or WS_CLIPSIBLINGS
|
---|
| 80 | flag is changed by the application using SetWindowLong.
|
---|
| 81 | (fixes Lotus Notes size bar & upper left rectangle painting)
|
---|
[5504] | 82 |
|
---|
[5501] | 83 | 2001-04-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 84 | - configure,win32k:
|
---|
| 85 | o Added option to Configure.cmd, -w, which omittes building
|
---|
| 86 | of Win32k.sys.
|
---|
| 87 |
|
---|
[5497] | 88 | 2001-04-12: Sofiya (sofiya@din.or.jp)
|
---|
| 89 | - USER32: o Fixes for DBCS strings
|
---|
| 90 |
|
---|
[5501] | 91 | 2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5493] | 92 | - PELDR: o Print module name that contributed to the failure of
|
---|
| 93 | loading kernel32.
|
---|
| 94 |
|
---|
[5501] | 95 | 2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5488] | 96 | - WINMM: o Clean up DirectAudio thread properly.
|
---|
| 97 |
|
---|
[5484] | 98 | 2001-04-05: Sofiya (sofiya@din.or.jp)
|
---|
| 99 | - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
|
---|
| 100 | - srclen <= -1 -> calculate length (docs say only for -1)
|
---|
| 101 | - source and destination pointer can't be the same (as docs also claim)
|
---|
| 102 | (verified in Windows ME & Windows NT4, SP6)
|
---|
| 103 |
|
---|
[5501] | 104 | 2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5483] | 105 | - USER32: o Rewrote ShowCursor
|
---|
| 106 |
|
---|
[5501] | 107 | 2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5469] | 108 | - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
|
---|
[5475] | 109 | o lstrcpynWtoA & lstrcpynAtoW fixes
|
---|
[5477] | 110 | o Removed WideCharToLocal & LocalToWideChar
|
---|
[5469] | 111 | - INCLUDE\unicode.h:
|
---|
| 112 | o AsciiToUnicode* & UnicodeToAscii* functions implemented
|
---|
| 113 | with functions in heapstring.h
|
---|
| 114 | - * o Compile fixes due to header changes
|
---|
| 115 |
|
---|
[5501] | 116 | 2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 117 | - DDRAW: o Only reset physical palette in DirectDraw destructor if
|
---|
[5452] | 118 | palette was really changed.
|
---|
| 119 | (gets rid of excessive screen redraws in DXView)
|
---|
| 120 | - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
|
---|
| 121 | o Return GetUserDefaultLangID in GetSystemDefaultLangID
|
---|
| 122 | o Ported Wine's codepage, string & unicode functions (codepage.cpp)
|
---|
| 123 | o Ported Wine's codepage unicode conversion functions & tables
|
---|
| 124 | (kernel32\unicode)
|
---|
[5455] | 125 | o Rewrote string functions (heapstring.cpp) to use new unicode
|
---|
| 126 | functions.
|
---|
[5464] | 127 | - USER32: o Ported Wine's Char* functions
|
---|
| 128 | TODO: IsCharAlphaA & IsCharAlphaNumericA
|
---|
[5452] | 129 |
|
---|
[5501] | 130 | 2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5437] | 131 | - USER32: o Mouse message translation fix (check capture)
|
---|
[5441] | 132 | o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
|
---|
| 133 | (fixes file dialogs with OFN_ENABLETEMPLATE style)
|
---|
| 134 | Verified behaviour in NT4, SP6 with DSShow sample
|
---|
| 135 | - about dialog with DS_CONTROL -> no titlebar
|
---|
| 136 | - file open dialog without DS_CONTROL -> titlebar + moveable
|
---|
[5501] | 137 | 2nd dialog
|
---|
[5441] | 138 | o Temporary workaround for file dialogs with template dialog child.
|
---|
| 139 | They don't redraw when switching directories. For some reason
|
---|
[5501] | 140 | the new child's (syslistview32) update rectangle stays empty
|
---|
[5441] | 141 | after its parent is made visible with ShowWindow
|
---|
| 142 | TODO: find real cause
|
---|
[5437] | 143 | - MSACM32: o Ported latest Wine version
|
---|
| 144 | - WINMM: o Ported latest Wine driver.c (necessary for msacm32 update)
|
---|
[5444] | 145 | - DDRAW: o Back buffer fix; setup surface descriptor structure and
|
---|
| 146 | don't clear DDSCAPS_BACKBUFFER flag
|
---|
| 147 | (fix for WinDVD)
|
---|
[5501] | 148 | o SurfLock: hEvent can be 0 as long as the DDLOCK_EVENT flag
|
---|
[5444] | 149 | isn't set.
|
---|
| 150 | Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
|
---|
| 151 | (fix for WinDVD)
|
---|
[5447] | 152 | - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
|
---|
| 153 | correct version of the pe loader (PE/PEC)
|
---|
[5437] | 154 |
|
---|
| 155 | 2001-04-02: Michal Necasek <michalnec@volny.cz>
|
---|
| 156 | - KERNEL32: o Fix for importing from executable
|
---|
| 157 | (fixes Blade Runner)
|
---|
[5441] | 158 | - TESTAPP\EXCEPTIONS:
|
---|
| 159 | o Small test apps to test exception handling
|
---|
[5437] | 160 |
|
---|
[5501] | 161 | 2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5420] | 162 | - WININET: o Added missing exports to wininet.def
|
---|
[5423] | 163 | - KERNEL32: o Removed yesterday's codepage change.
|
---|
| 164 | (breaks Opera)
|
---|
[5422] | 165 | - WINMM: o Increased nr of DART buffers used for wave playback
|
---|
[5426] | 166 | - ODININST o Moved kernel32 init code into odininst
|
---|
| 167 | o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
|
---|
| 168 | registry key with international settings
|
---|
[5441] | 169 | - USER32: o Create dialog controls with CreateWindowExW
|
---|
[5430] | 170 | o Use correct SendMessage(A/W) call during CreateWindow
|
---|
[5420] | 171 |
|
---|