source: trunk/changelog@ 5565

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

* empty log message *

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