source: trunk/changelog@ 3446

Last change on this file since 3446 was 3446, checked in by achimha, 26 years ago

* empty log message *

File size: 12.1 KB
Line 
1 /* $Id: changelog,v 1.909 2000-04-25 07:55:23 achimha Exp $ */
2
3 2000-04-25: Achim Hasenmueller <achimha@innotek.de>
4 - TOOLS/BIN: put back old wrc.exe from Oct. 99 because the
5 new one has problems with include files...
6
7 2000-04-25: Patrick Haller <phaller@gmx.net>
8 - SHLWAPI: - stubbed all the UrlXXX functions (required for IE4/5 ;-)
9
10 2000-04-23: Sander van Leeuwen <sandervl@xs4all.nl>
11 - GDI32: Dib section blit fix (missing pixels)
12 - WSOCK32: Don't send FD_CLOSE message when select returns
13 and there's no data available (recv in another thread
14 might have taken that data before the ioctl call in
15 the WSAAsyncSelect thread)
16 -> fixes lost connections in RealPlayer 7
17
18 2000-04-19: Patrick Haller <phaller@gmx.net>
19 - INCLUDE/PDWIN32.TOOLS: fix build rule for (old) .asm sources
20
21 2000-04-19: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
22 - KERNEL32: Added fix for bug in FP13 DosQuerySysInfo.
23 Win32k/Pe2Lx loaded files didn't work.
24 Corrected TLS handling for Borland.
25
26 2000-04-19: Sander van Leeuwen <sandervl@xs4all.nl>
27 - TOOLS\WRC: Resync with latest Wine wrc + added code to produce
28 masm compatible assembly (for some reason removed from
29 wrc some time ago)
30 -> fixes file open dialog (nothing painted)
31 - COMCTL32: Check for NULL pointers before freeing memory
32 (toolbar; removes some warnings from the logfiles)
33
34 2000-04-18: Sander van Leeuwen <sandervl@xs4all.nl>
35 - USER32: Added LR_LOADFROMFILE support for icon & cursor loading
36 - GDI32: Dib section fixes (use height/width of window when
37 dc belongs to a window; use correct stretchblit mode)
38 - TOOLS\REGEDIT: Added regedit command line tool (ported this from
39 Wine with some modifications & bug fixes)
40 - KERNEL32: Also set FPU control word to 0x27f before calling thread
41 functions (just to be sure)
42
43 2000-04-16: Christoph Bratschi <cbratschi@datacomm.ch>
44 - COMCTL32: added new resources: i.e. header cursors
45 changed file version to 5.80 (IE5, Win2k)
46 implemented missing listview messages, implemented some
47 extended styles
48
49 2000-04-16: Sander van Leeuwen <sandervl@xs4all.nl>
50 - KERNEL32: Put back dll search method, fixed bug in LoadLibraryEx
51 (no return after error detection)
52 Set FPU control word to 0x27F before calling exe entrypoint
53 (fixes some FPU exception problems in RealPlayer 7)
54
55 2000-04-16: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
56 - KERNEL32: Reorganized/reworte LoadLibrary/LoadLibraryEx code.
57 isPEImage was changed to return 1 if DLL and 2 if EXE.
58 (It still returns FALSE if not valid PE image.)
59
60 - include\odin32validate.h:
61 New header file. Parameter validation macros.
62 - KERNEL32: Before reading Sanders last message I had rewritten most of
63 the findDll function. So, as my implementation seems a bit
64 more flexible I decided to commit it.
65 Currently it's searching the three LIBPATH paths too. If
66 this causes any real trouble we'll disable this.
67
68 findDll now returns TRUE if a file were found. Callers are
69 corrected to test for this.
70
71 2000-04-15: Christoph Bratschi <cbratschi@datacomm.ch>
72 - COMCTL32: rewrote listview item handling: sort bug fix,
73 allows >= 4.70 support
74 implemented several new messages
75
76 2000-04-15: Sander van Leeuwen <sandervl@xs4all.nl>
77 - WSOCK32: Async select fix (VPBuddy can connect again)
78 - KERNEL32: Remove terminating backslash in FindFirstFileA (if present)
79 (otherwise DosFindFirst fails)
80 Fixed flushing of file maps (wrong VirtualQuery parameter)
81 Path search fix for dlls
82 Dll search order:
83 1) exe dir
84 2) current dir
85 3) windows system dir (kernel32 path)
86 4) windows dir
87 5) path environment variable
88
89 - ODINCRT: Added checks for failing mallocs
90 - USER32: Corrected return value of EnableWindow
91 Send WM_CANCELMODE message when disabling window
92 (return true if previous state was disabled, else false (sdk docs))
93 Don't send mouse messages to disabled windows; reroute
94 them to their parent windows (if any)
95
96 2000-04-14: Sander van Leeuwen <sandervl@xs4all.nl>
97 - KERNEL32: Hardcoded system & windows dir
98 system dir = kernel32 dir
99 windows dir = kernel32 dir\win
100 Fixed dll attach for pe2lx/win32k & lx Odin executables
101 Command line fixes (now starts with full path of exe)
102 Search for dlls in:
103 1) current dir
104 2) win32 exe dir
105 3) windows system dir
106 4) path
107 Append backslash if GetFileAttributes fails (and it's missing
108 from the filename)
109 - PELDR/KERNEL32: Fixed starting of executable with spaces in name
110 (might not be 100% complete yet)
111 Fixes for relative path of executable
112 - ODIN.INI.TXT: Removed DIRECTORIES section
113
114 2000-04-13: Sander van Leeuwen <sandervl@xs4all.nl>
115 - USER32: Set thread message structure to 0 before dispatching it
116 Prevents app from sending the same posted message twice
117 (causing problems when freeing the postmsg struct)
118 (fixes RealPlayer 7 Update service)
119 - CRTDLL: Fixed div (result must be returned in edx:eax)
120 - PE: Check PATH for executable file
121
122 2000-04-12: Christoph Bratschi <cbratschi@datacomm.ch>
123 - COMCTL32: listview: completed most version 4 features
124
125 2000-04-10: Sander van Leeuwen <sandervl@xs4all.nl>
126 - USER32: Added support for topmost windows
127
128 2000-04-10: David Raison <djr@lemur.co.uk>
129 - COMDLG32: fixed wrong lParam in file dialog
130
131 2000-04-09: Sander van Leeuwen <sandervl@xs4all.nl>
132 - GDI32: Y inversion fix for dib sections blits
133 - WINMM: GetPosition fix (don't return 0 when stream not active)
134 - KERNEL32: Fixed OSLibDosFindFirst. Return error if First DosFirstFirst
135 fails. (fixes RealPlayer 7 install)
136
137 2000-04-09: Yuri Dario <mc6530@mclink.it>
138 - INCLUDE(\WIN):
139 - odin.h: define NONAMELESSUNION only for VA3.0 (now works with VA4);
140 remove buildin.h when invoked from resource compiler.
141 - commctrl.h: new macros
142 - mmsystem.h: define DUMMYUNIONNAME with same code used in other
143 headers to avoid precompiling errors.
144 - shlguid.h: missing ID
145 - shlobj.h: missing shlguid.h include
146 - windows.h: define CINTERFACE only for C compilers or VA3.x
147 - windowsx.h: macros
148 - wingdi.h: few AW defines
149 - winuser.h: new macros
150
151 2000-04-08: Christoph Bratschi <cbratschi@datacomm.ch>
152 - COMCTL32: added new styles and functionality, bug fixes
153
154 2000-04-08: Sander van Leeuwen <sandervl@xs4all.nl>
155 - WINMM: Restart, pause & underrun fixes
156 - KERNEL32: Fixed bug in CompareStringW. Unicode conversion was
157 causing heap corruption. (RealPlayer 7 crashes)
158
159 2000-04-07: Michal Necasek <mike@mendelu.cz>
160 - DDRAW\NEW: Experimental fullscreen DDraw, VIDEOPMI based.
161 May not work with all video cards and may cause all
162 kinds of trouble. But works swell for eg. Fallout 1/2
163 or HMM3. Contains some extra bugs compared to the
164 windowed DDraw, ie. Moorhuhn and others don't work
165 with it at all. Please tell me about your experience
166 with this shameless hack.
167
168 2000-04-07: Sander van Leeuwen <sandervl@xs4all.nl>
169 - WINMM: Don't restart when already playing
170 - USER32: Print mark in debug log with WriteLog (#ifdef DEBUG), not dprintf
171 Workaround for paint problems in RealPlayer 7 Update 1.
172 (don't clip the dc with a region in DoNCPaint if the clip
173 region has the same size as the window; doing so creates
174 update problems for no obvious reason)
175 - GDI32: Only change bitmap size in SetDIBitsToDevice if bitmap
176 is not compressed. (fixes crash during startup in Excel)
177 NOTE: Open32 doesn't implement compression type conversion
178 correctly. (black splash screen for RLE8 bitmap)
179 - KERNEL32: Return length of windows or system directory when
180 GetWindowsDirectory/GetSystemDirectory is called with
181 a NULL pointer
182
183 2000-04-07: David Raison <djr@lemur.co.uk>
184 - USER32: Set lfSmCaptionFont structure in NONCLIENTMETRICSA
185 (SystemParametersInfoA/SPI_GETNONCLIENTMETRICS)
186
187 2000-04-07: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
188 - TOOLS\DBGINFO: Sym2Hll is now able to convert .SYM files into HLL
189 debuginfo and add it to LX executables. This might be
190 quite useful if you want to see system DLL while debugging.
191 But before you add debuginfo to all dll's in c:\os2\dll
192 I have to warn that this is _very_ alpha software. Do always
193 make a backup (Sym2Hll don't create backups!) and have
194 recovery boot disks ready!
195
196 2000-04-06: Sander van Leeuwen <sandervl@xs4all.nl>
197 - WINMM: Fixed message callback once more (previous fix broke rp7)
198 Fixed restart
199
200 2000-04-08: Michal Necasek <mike@mendelu.cz>
201 - WINMM: Moved phwo == NULL check below format query handling.
202 (enables sound in Jack Jazzrabbit; still not right though)
203
204 2000-04-05: David Raison <djr@lemur.co.uk>
205 - OLEAUT32: Turned default DEBUG-info down.
206
207 2000-04-05: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
208 - Win32k: Added fixpack 13 symbols to the symbol database.
209 Using win32k.sys with fp13 works fine here.
210
211 2000-04-05: Sander van Leeuwen <sandervl@xs4all.nl>
212 - WINMM: Smallest waveout buffer size = 128 bytes
213 Fixed callback bugs (reported by Michal Necasek)
214
215 2000-04-03: David Raison <djr@lemur.co.uk>
216 - OLE32: Added CoCreateGUID (calls RPCRT4.UuidCreate)
217 - RPCRT4: Beginning of new dll:
218 RpcStringFreeA, RpcStringFreeW, UuidCompare
219 UuidCreate, UuidCreateNil, UuidEqual
220 UuidFromStringA, UuidFromStringW, UuidHash
221 UuidIsNil, UuidToStringA, UuidToStringW
222
223 2000-04-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
224 - SHELL32: don't sort files case sensitive
225
226 2000-04-02: Christoph Bratschi <cbratschi@datacomm.ch>
227 - KERNEL32: FindFirst: don't return "." and ".." in root
228 wrote long to short name conversion
229 added error code converter
230 - USER32: removed 'What You See Is What You Get On First Of April'
231
232 2000-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
233 - USER32: dc.cpp cleanup
234 - GDI32: Dib section sync bugfix (todo: rgb 565 to 555 conversion if bpp == 16)
235 Set y inversion to 0 if dib section isn't flipped
236 (fixes upside down flash videos in RealPlayer 7)
237 - WINMM: Faked mixer apis
238
239 2000-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
240 - GDI32: Fixed dibsection bitblits. (wrong updates of realplayer 7
241 videos)
242
243 2000-04-01: Christoph Bratschi <cbratschi@datacomm.ch>
244 - USER32: added WYSIWYGOFOA interface
245
246 2000-04-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
247 - USER32: Fixed track frame width & height (now you can actually
248 see the tracking frame when moving a window)
249
Note: See TracBrowser for help on using the repository browser.