source: trunk/changelog@ 3450

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

wrc workaround

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