source: trunk/changelog@ 5592

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

* empty log message *

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