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