source: trunk/changelog@ 3403

Last change on this file since 3403 was 3403, checked in by bird, 26 years ago

* empty log message *

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