source: trunk/changelog@ 5589

Last change on this file since 5589 was 5589, checked in by sandervl, 25 years ago

* empty log message *

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