[5619] | 1 | /* $Id: changelog,v 1.1386 2001-04-28 13:35:32 sandervl Exp $ */
|
---|
[5313] | 2 |
|
---|
[5619] | 3 | 2001-04-28: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - SHELL32: o Resync with latest Wine (20010418) + merged Odin fixes/additions
|
---|
| 5 | - SHLWAPI: o Resync with latest Wine (20010418) + merged Odin fixes/additions
|
---|
| 6 | - KERNEL32: o Added GetSystemWindowsDirectoryA/W exports
|
---|
| 7 |
|
---|
[5615] | 8 | 2001-04-28: Markus Montkowski <mmontkowski@gmx.de|
|
---|
| 9 | - MSVFW32: o Fixed ICOpen, check and correct fccType from VIDC to vidc.
|
---|
| 10 | Videocodecs do load now.
|
---|
| 11 |
|
---|
[5603] | 12 | 2001-04-27: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 13 | - USER32: o Call WH_GETMESSAGE hook handler from GetMessage and PeekMessage
|
---|
| 14 | (if message present)
|
---|
| 15 | o Added (not 100% correct) filtering for nonclient mouse messages
|
---|
| 16 | (fixes nonclient messages for MS Word 97 (frame & menu mouse actions))
|
---|
| 17 | o Recalculate HDC height of windows with CS_OWNDC style if
|
---|
| 18 | window is resized.
|
---|
| 19 | (fixes 28 pixel shift up in MS Word MDI window; Word calls
|
---|
| 20 | GetDCEx once and does custom WM_PAINT handling (never calls
|
---|
| 21 | Begin/EndPaint))
|
---|
| 22 | - KERNEL32: o HeapReAlloc: return old pointer if new size is smaller or
|
---|
| 23 | equal to old size.
|
---|
[5610] | 24 | - GDI32: o Limit length of converted strings in InternalDrawTextExW,
|
---|
| 25 | InternalGetTabbedTextExtentW, InternalTabbedTextOutW &
|
---|
| 26 | InternalTextOutW. (cbCount might be smaller than string
|
---|
| 27 | length)
|
---|
| 28 | (fixes crash in MS Word when it tries to display the about
|
---|
| 29 | dialog)
|
---|
[5603] | 30 | - INCLUDE\win\unicode:
|
---|
| 31 | o strcpyW bugfix (didn't terminate string -> heap corruption)
|
---|
| 32 | - DSOUND: o Preliminary code added for DirectAudio interface.
|
---|
| 33 | (not finished & not activated)
|
---|
| 34 |
|
---|
[5589] | 35 | 2001-04-26: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 36 | - KERNEL32: o Implemented FreeLibraryAndExitThread
|
---|
| 37 | o Create HandleManager class for mailslots + partial implementation
|
---|
| 38 | for mailslot APIs (using named pipes)
|
---|
| 39 | o Fixed wrong return values for some CloseHandle methods
|
---|
| 40 | o Fixed CreateNamedPipe; must not call DosCreateNPipe for existing pipe
|
---|
[5592] | 41 | (at least according to the SDK docs; must verify this in NT!)
|
---|
[5589] | 42 | o Implemented CreateFile and CloseHandle for named pipe class
|
---|
| 43 | o Implemented SetNamedPipeHandleState
|
---|
[5592] | 44 | o GetEnvironmentVariableW fix (breakpoint hit in debug build)
|
---|
| 45 | - ADVAPI32: o IsTextUnicode forwarded to RtlIsTextUnicode (ntdll)
|
---|
| 46 | - GDI32: o InternalTextOutW fix (breakpoint hit in debug build)
|
---|
[5599] | 47 | - OLE32: o Resync with latest Wine build (20010418)
|
---|
[5589] | 48 |
|
---|
[5584] | 49 | 2001-04-25: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 50 | - USER32: o Check visibility of parents in IsWindowVisible
|
---|
| 51 | o Call ShowWindow(SW_MINIMIZE) in CloseWindow (for non-child windows)
|
---|
| 52 | Don't use PM directly to minimize it.
|
---|
| 53 |
|
---|
| 54 | 2001-04-25: Shingo Tsuda <sofiya@din.or.jp>
|
---|
| 55 | - GDI32: o DBCS fix for looking up font name in font rename profile section
|
---|
| 56 |
|
---|
[5580] | 57 | 2001-04-24: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 58 | - COMDLG32, DPLAYX, OLE32, OLEAUT32:
|
---|
| 59 | o Compile fixes for VAC 3.6.5 (nameless unions & structs)
|
---|
[5582] | 60 | - COMDLG32: o Resync with latest Wine code
|
---|
| 61 | (directory changed after file chosen in file open dialog)
|
---|
[5580] | 62 |
|
---|
[5575] | 63 | 2001-04-23: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 64 | - SHELL32: o Updates and fixes for SHFileOperationA (FO_COPY)
|
---|
| 65 |
|
---|
[5563] | 66 | 2001-04-22: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5573] | 67 | - DDRAW: o Wrong calling convention of io_init2. Parameter is pushed
|
---|
| 68 | on the stack, not put in eax.
|
---|
| 69 | (fixes crash in release ddraw & systems with xf86sup.sys
|
---|
| 70 | installed)
|
---|
[5563] | 71 | - KERNEL32: o Removed wrong segment definitions introduced by yesterday's
|
---|
| 72 | EXC_CallHandler rewrite.
|
---|
| 73 | (fixes global data section)
|
---|
[5565] | 74 | o Build fake header for LX executable
|
---|
| 75 | (fixes crash during Acrobat Reader 5 install (regsvr32.exe))
|
---|
| 76 | - NTDLL: o Updated rtlstr.c (Wine)
|
---|
| 77 | o Wrote partial implementation of RtlGetAce. Not tested well.
|
---|
| 78 | Enough to prevent Acrobat Reader 5 install from crashing.
|
---|
| 79 | - ADVAPI32: o Forward AddAce, FindFirstFreeAce, GetAce & AddAccessAllowedAce
|
---|
| 80 | to NTDLL
|
---|
[5571] | 81 | - INSTALL: o Add Font registry keys
|
---|
| 82 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
|
---|
| 83 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Fonts]
|
---|
| 84 | "Courier 10,12,15 (VGA res)"="COURE.FON"
|
---|
| 85 | "MS Sans Serif 8,10,12,14,18,24 (VGA res)"="SSERIFE.FON"
|
---|
| 86 | "MS Serif 8,10,12,14,18,24 (VGA res)"="SERIFE.FON"
|
---|
[5563] | 87 |
|
---|
[5558] | 88 | 2001-04-21: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 89 | - KERNEL32: o DosWrite for stdout doesn't accept high addresses
|
---|
| 90 | o Rewrote EXC_CallHandler in assembly (copied compiler output
|
---|
| 91 | (opt. off))
|
---|
| 92 | No longer necessary to turn off optimizations for exceptions.cpp.
|
---|
[5560] | 93 | o Added partial implementation of GetLongPathNameA/W
|
---|
[5558] | 94 |
|
---|
[5555] | 95 | 2001-04-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 96 | - USER32: o Commented out RestoreCursor call in user32 exitlist handler.
|
---|
[5573] | 97 | Seems to cause PM hangs on some (a lot?) machines for
|
---|
[5555] | 98 | reasons unknown.
|
---|
| 99 |
|
---|
[5552] | 100 | 2001-04-20: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 101 | - DSOUND: o Fixes / Workaround for PowerDVD 3.0
|
---|
| 102 | Crashed when allocating sound object for
|
---|
| 103 | 48kHz, 16-Bit, 4 channels
|
---|
| 104 | o dynamically size the internal mixing buffer
|
---|
| 105 | in DSMIXER
|
---|
| 106 |
|
---|
[5543] | 107 | 2001-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 108 | - KERNEL32: o Fail properly when a dll can't be found or loaded.
|
---|
| 109 | - SHELL32: o Ported latest shlfileop.c from Wine. (include functional
|
---|
| 110 | SHFileOperation).
|
---|
| 111 | TODO: Merge the rest.
|
---|
| 112 |
|
---|
[5541] | 113 | 2001-04-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 114 | - dailybuild:
|
---|
| 115 | o Adjusted to new build pattern.
|
---|
| 116 | o Copy all builds to local archive directory.
|
---|
| 117 | - tools\install:
|
---|
| 118 | o Added Xx2Lx.
|
---|
| 119 | - Readme.txt:
|
---|
| 120 | o Changed Pe2Lx to Xx2Lx.
|
---|
| 121 |
|
---|
[5537] | 122 | 2001-04-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 123 | - Unicode: o Minor addjustments to makefile. CFLAGS is the correct
|
---|
| 124 | place to addjust flags for C compilation. And flags
|
---|
| 125 | are compiler specific.. wrapped it in CCENV checks.
|
---|
| 126 | - Tools\Common:
|
---|
| 127 | o Revamped a couple of things - introduced interface classes.
|
---|
| 128 | Not quite statisfied yet, but it's working.
|
---|
| 129 | o Starting to make an kFileSDF class to access .SDF files
|
---|
| 130 | SDF = Structure Definition Files - used by PMDF. Contains
|
---|
| 131 | information about structures (struct _somthing_s).
|
---|
| 132 | Needs this information for win32k.
|
---|
| 133 | - Tools\Database:
|
---|
| 134 | o Recreate makefiles, new style. GD is not compiled any longer.
|
---|
| 135 | o Addjusted APIImport to fit changes in Tools\Common.
|
---|
| 136 | - Tools\ImpLib:
|
---|
| 137 | o Addjusted code to fit changes in Tools\Common.
|
---|
| 138 |
|
---|
[5515] | 139 | 2001-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 140 | - KERNEL32: o Fix for LoadLibrary(Ex)W. (free must not be called for
|
---|
| 141 | converted strings; use FreeAsciiString instead)
|
---|
[5517] | 142 | - TOOLS\WRC:o Ported latest wrc. (has proper ascii -> unicode conversion
|
---|
| 143 | and more features)
|
---|
[5537] | 144 | o Open files in binary mode only; fixes load failures for
|
---|
[5517] | 145 | shell32 icons (newlines were translated; bytes removed from
|
---|
| 146 | icon data)
|
---|
[5520] | 147 | - DPLAYX: o Compile fixes for header changes.
|
---|
[5517] | 148 | - include\odin.h:
|
---|
| 149 | o Changes for wrc. It chokes on calling conventions.
|
---|
| 150 | o Got rid of annoying 'unused struct' warnings
|
---|
[5515] | 151 |
|
---|
[5514] | 152 | 2001-04-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 153 | - DSOUND: o Removed pmwinx.lib from makefile. Wasn't used; and it had
|
---|
| 154 | bad path (ie. no path).
|
---|
| 155 |
|
---|
[5504] | 156 | 2001-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 157 | - KERNEL32: o RegQueryValueExA/W broken. Reserved & type parameters reversed.
|
---|
| 158 | (fixes crash in Notepad and possibly solves many other problems)
|
---|
[5506] | 159 | - USER32: o SetCapture change; return immediately when new capture window
|
---|
| 160 | is the same as old one.
|
---|
| 161 | (fixes high cpu load in PowerDVD when holding mouse cursor over
|
---|
| 162 | control window; PM kept sending WM_MOUSEMOVE messages)
|
---|
[5508] | 163 | o Rewrote ClipCursor & GetClipCursor
|
---|
[5510] | 164 | o Set PM style flags when WS_CLIPCHILDREN or WS_CLIPSIBLINGS
|
---|
| 165 | flag is changed by the application using SetWindowLong.
|
---|
| 166 | (fixes Lotus Notes size bar & upper left rectangle painting)
|
---|
[5504] | 167 |
|
---|
[5501] | 168 | 2001-04-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 169 | - configure,win32k:
|
---|
| 170 | o Added option to Configure.cmd, -w, which omittes building
|
---|
| 171 | of Win32k.sys.
|
---|
| 172 |
|
---|
[5584] | 173 | 2001-04-12: Shingo Tsuda <sofiya@din.or.jp>
|
---|
[5497] | 174 | - USER32: o Fixes for DBCS strings
|
---|
| 175 |
|
---|
[5501] | 176 | 2001-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5493] | 177 | - PELDR: o Print module name that contributed to the failure of
|
---|
| 178 | loading kernel32.
|
---|
| 179 |
|
---|
[5501] | 180 | 2001-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5488] | 181 | - WINMM: o Clean up DirectAudio thread properly.
|
---|
| 182 |
|
---|
[5584] | 183 | 2001-04-05: Shingo Tsuda <sofiya@din.or.jp>
|
---|
[5484] | 184 | - KERNEL32: o WideCharToMultiByte/MultiByteToWideChar changes
|
---|
| 185 | - srclen <= -1 -> calculate length (docs say only for -1)
|
---|
| 186 | - source and destination pointer can't be the same (as docs also claim)
|
---|
| 187 | (verified in Windows ME & Windows NT4, SP6)
|
---|
| 188 |
|
---|
[5501] | 189 | 2001-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5483] | 190 | - USER32: o Rewrote ShowCursor
|
---|
| 191 |
|
---|
[5501] | 192 | 2001-04-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5469] | 193 | - KERNEL32: o Removed AsciiToUnicode* & UnicodeToAscii* functions
|
---|
[5475] | 194 | o lstrcpynWtoA & lstrcpynAtoW fixes
|
---|
[5477] | 195 | o Removed WideCharToLocal & LocalToWideChar
|
---|
[5469] | 196 | - INCLUDE\unicode.h:
|
---|
| 197 | o AsciiToUnicode* & UnicodeToAscii* functions implemented
|
---|
| 198 | with functions in heapstring.h
|
---|
| 199 | - * o Compile fixes due to header changes
|
---|
| 200 |
|
---|
[5501] | 201 | 2001-04-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 202 | - DDRAW: o Only reset physical palette in DirectDraw destructor if
|
---|
[5452] | 203 | palette was really changed.
|
---|
| 204 | (gets rid of excessive screen redraws in DXView)
|
---|
| 205 | - KERNEL32: o Return GetUserDefaultLCID in GetSystemDefaultLCID
|
---|
| 206 | o Return GetUserDefaultLangID in GetSystemDefaultLangID
|
---|
| 207 | o Ported Wine's codepage, string & unicode functions (codepage.cpp)
|
---|
| 208 | o Ported Wine's codepage unicode conversion functions & tables
|
---|
| 209 | (kernel32\unicode)
|
---|
[5455] | 210 | o Rewrote string functions (heapstring.cpp) to use new unicode
|
---|
| 211 | functions.
|
---|
[5464] | 212 | - USER32: o Ported Wine's Char* functions
|
---|
| 213 | TODO: IsCharAlphaA & IsCharAlphaNumericA
|
---|
[5452] | 214 |
|
---|
[5501] | 215 | 2001-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5437] | 216 | - USER32: o Mouse message translation fix (check capture)
|
---|
[5441] | 217 | o Turn off WS_CAPTION style for dialogs with DS_CONTROL flag set
|
---|
| 218 | (fixes file dialogs with OFN_ENABLETEMPLATE style)
|
---|
| 219 | Verified behaviour in NT4, SP6 with DSShow sample
|
---|
| 220 | - about dialog with DS_CONTROL -> no titlebar
|
---|
| 221 | - file open dialog without DS_CONTROL -> titlebar + moveable
|
---|
[5501] | 222 | 2nd dialog
|
---|
[5441] | 223 | o Temporary workaround for file dialogs with template dialog child.
|
---|
| 224 | They don't redraw when switching directories. For some reason
|
---|
[5501] | 225 | the new child's (syslistview32) update rectangle stays empty
|
---|
[5441] | 226 | after its parent is made visible with ShowWindow
|
---|
| 227 | TODO: find real cause
|
---|
[5437] | 228 | - MSACM32: o Ported latest Wine version
|
---|
| 229 | - WINMM: o Ported latest Wine driver.c (necessary for msacm32 update)
|
---|
[5444] | 230 | - DDRAW: o Back buffer fix; setup surface descriptor structure and
|
---|
| 231 | don't clear DDSCAPS_BACKBUFFER flag
|
---|
| 232 | (fix for WinDVD)
|
---|
[5501] | 233 | o SurfLock: hEvent can be 0 as long as the DDLOCK_EVENT flag
|
---|
[5444] | 234 | isn't set.
|
---|
| 235 | Size of lpSurfaceDesc can be sizeof(DDSURFACEDESC2).
|
---|
| 236 | (fix for WinDVD)
|
---|
[5447] | 237 | - KERNEL32: o Check executable type (VIO/GUI) in CreateProcess and launch
|
---|
| 238 | correct version of the pe loader (PE/PEC)
|
---|
[5437] | 239 |
|
---|
| 240 | 2001-04-02: Michal Necasek <michalnec@volny.cz>
|
---|
| 241 | - KERNEL32: o Fix for importing from executable
|
---|
| 242 | (fixes Blade Runner)
|
---|
[5441] | 243 | - TESTAPP\EXCEPTIONS:
|
---|
| 244 | o Small test apps to test exception handling
|
---|
[5437] | 245 |
|
---|
[5501] | 246 | 2001-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5420] | 247 | - WININET: o Added missing exports to wininet.def
|
---|
[5423] | 248 | - KERNEL32: o Removed yesterday's codepage change.
|
---|
| 249 | (breaks Opera)
|
---|
[5422] | 250 | - WINMM: o Increased nr of DART buffers used for wave playback
|
---|
[5426] | 251 | - ODININST o Moved kernel32 init code into odininst
|
---|
| 252 | o Create [HKEY_USERS\.DEFAULT\Control Panel\International]
|
---|
| 253 | registry key with international settings
|
---|
[5441] | 254 | - USER32: o Create dialog controls with CreateWindowExW
|
---|
[5430] | 255 | o Use correct SendMessage(A/W) call during CreateWindow
|
---|
[5420] | 256 |
|
---|