source: trunk/changelog@ 3455

Last change on this file since 3455 was 3455, checked in by davidr, 26 years ago

OLE32/NEW: Work-in-progress on adding apartment handling

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