source: trunk/changelog@ 3449

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

Fixed StringFromGUID2

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