source: trunk/changelog@ 3408

Last change on this file since 3408 was 3408, checked in by cbratschi, 26 years ago

* empty log message *

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