source: trunk/changelog@ 3407

Last change on this file since 3407 was 3407, checked in by sandervl, 26 years ago

* empty log message *

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