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