source: trunk/changelog@ 3444

Last change on this file since 3444 was 3444, checked in by phaller, 26 years ago

Add: added stubs for UrlXXX functions

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