source: trunk/changelog@ 5615

Last change on this file since 5615 was 5615, checked in by hugh, 25 years ago

MSVFW32 changes added

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