source: trunk/changelog@ 3183

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

* empty log message *

File size: 18.5 KB
RevLine 
[3181]1 /* $Id: changelog,v 1.826 2000-03-21 17:27:40 cbratschi Exp $ */
[2659]2
[3181]3 2000-03-21: Christoph Bratschi <cbratschi@datacomm.ch>
4 - COMCTL32: optimized header/treeview for AMD cpuid
5 fixed dispinfo callbacks
6 reduced listview redraws
7 fixed wrong ASCII definitions in commctrl.h
8
[3176]9 2000-03-20: David Raison <djr@lemur.co.uk>
10 - OLE32: Ported OleQueryCreateFromData, OleCreateFromData from
11 wine/corel sources.
[3179]12 - OLEAUT32: Bugfix in ITypeLibImpl_GetDocumentation
[3176]13
[3173]14 2000-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
15 - WSOCK32: Fixed relay bug in WSAAsyncSelect (delete relay slot
16 with same socket nr & window handle; there can
17 be more selects per window)
18
[3166]19 2000-03-19: David Raison <djr@lemur.co.uk>
20 - OLE32: Bugfixes.
21 Ported changes from wine/corel sources.
[3170]22 Created ReadClassStm, WriteClassStm, ProgIDFromCLSID
[3166]23
[3165]24 2000-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
25 - ODINCRT: Fixed FS wrapper for _fdopen & others in file.cpp
26 (missing SetFS)
27
[3163]28 2000-03-19: Michal Necasek <mike@mendelu.cz>
29 - DINPUT: Few fixes, now Fallout 1/2 almost works
30
[3161]31 2000-03-18: Michal Necasek <mike@mendelu.cz>
32 - DDRAW: Fixed messed up DPA callback calling convention
33 Added some transparent blit code which was
34 mysteriously missing
35
[3158]36 2000-03-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
[3161]37 - MSVCRT: Implemented _EH_prolog
[3158]38
[3152]39 2000-03-18: Christoph Bratschi <cbratschi@datacomm.ch>
[3161]40 - USER32: merged with Corel WINE 20000317
41 added GCL_HICONSM support
42 fixed messagebox with no icon
43 - COMCTL32: merged with Corel WINE 20000317 + bug fixes
[3152]44
[3151]45 2000-03-18: Sander van Leeuwen <sandervl@xs4all.nl>
[3161]46 - ODINCRT: Added FS wrapper for _fdopen
[3151]47 (fixes crash at exit in Professional MineSweeper when
48 selection About Odin from the system menu)
[3161]49
[3143]50 2000-03-17: Christoph Bratschi <cbratschi@datacomm.ch>
[3161]51 - COMCTL32: fixed trackbar buddy alignment
52 added useful internal tooltip styles
[3143]53
[3141]54 2000-03-17: Sander van Leeuwen <sandervl@xs4all.nl>
[3161]55 - WSOCK32: Semaphore protection for relay slot alloc/free
[3141]56 Fixed bug in WSAAsyncSelect. Allow more than one
57 async call per window for RelayAlloc call. If it's not
58 alloced, pmwsock will return an error. Previously it was
59 overwriting slots for other async calls. (WSAAsyncGetHostName
60 in RealPlayer 7)
[3161]61 - KERNEL32: Fixed handle creation for thread 0.
[3141]62
[3130]63 2000-03-16: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3136]64 - TOOLS\FASTDEP:
65 Speed optimizations: using AVL trees, include dir caching,
66 dependencies stored in AVL tree until all files has been
67 processes, buffered write.
68 Cyclic dependency check.
69 All files but the objectfiles now should have fully qualified paths.
[3130]70
[3136]71 - INCLUDE\PDWIN32.TOOLS:
72 DEPEND: Enabled cyclic check.
73
[3125]74 2000-03-16: Sander van Leeuwen <sandervl@xs4all.nl>
[3161]75 - USER32: Fixed virtual keycode of return key
[3141]76 TODO: Not done for all keys. Should probably looks at the
77 scancode (not virtual char) to translate keys.
[3161]78 - GDI32: RP7 calls CreateDIBSection with HDC 0; Call
[3125]79 GetWindowDC(GetDesktopWindow()) in that case
80 -> fixes crash (result of CreateDIBSection failure)
81 TODO: Looks like this is allowed in NT, but need to check
82 this to be sure nothing else caused this problem.
83 (Note: most recent RealPlayer 7 version only)
[3161]84 - KERNEL32: Semaphore protection of handle alloc
[3125]85 Added handlemanager class for thread handles
86 Added workaround for Open32 WaitForSingleObject bug
[3130]87 (if thread is terminated and WaitForSingleObject is
[3125]88 called with the thread's handle -> never returns
89 (new rp7 hang at exit))
90 TODO: WaitForMultipleObjects can still hang ->
91 Event, semaphore, mutex & wait apis need to
92 be redesigned (not using Open32)
93
[3116]94 2000-03-14: Christoph Bratschi <cbratschi@datacomm.ch>
[3161]95 - USER32: implemented much faster LB_SETCOUNT
[3116]96
[3109]97 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
[3161]98 - USER32: Put back check (oldsel == newsel) in LISTBOX_SetSelection
[3109]99 (why was this commented out?)
100 Fixed combobox: Clear CBF_SELCHANGE flag before calling
101 CBUpdateEdit
102 Don't send CBN_EDITUPDATE when CBF_NOEDITNOTIFY
103 flag is set (by combo_handletext)
104 -> fixes infinite loops in RealPlayer 7 (type name of file
105 previously used in edit box; last letter entered -> crash)
[3161]106 AdjustWindowRectEx bugfix (reported by Robert Lalla)
[3118]107 Don't clear WS_POPUP flag. (HAS_THINFRAME depends on it)
108 -> fixes wrong resolution changes in Quake 2
109 Don't clear WS_CHILD flag either. (HAS_THICKFRAME depends on it)
110
[3161]111 - KERNEL32: Clear FILE_SHARE_DELETE flag before calling Open32's
[3130]112 CreateFile. (otherwise it fails) -> fixes RealPlayer 7
[3125]113 Basic (new update).
114
[3109]115 - WSOCK32: Changed workaround for setsockopt bug (SO_SNDBUF/SO_RCVBUF (OS/2's
116 winsock returns WSAEINVAL if size > 64k))
117 Only change size if setsockopt returns WSAINVAL (32 bits stack
[3125]118 should support size > 64 kb (?))
119 Added selective logging feature.
[3109]120
[3106]121 2000-03-12: Markus Montkowski <mmontkowski@gmx.de>
[3161]122 - KERNEL32: Added fix for GetFileAttributes. Open32 doesn't like
[3106]123 i.e. 'c:'; needs to be changed into 'c:\'
124
[3100]125 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
[3161]126 - include\winconst.h: Fixed KEY_ALL_ACCESS definition
[3100]127 (reported by Yuri Dario)
[3161]128 - DSOUND: Replaced dsound by new version
129 - USER32: Replaced os2.h includes by os2wrap.h
[3104]130 Set message nr, wParam & lParam to 0 for dummy messages
131 (to prevent keyboard or mouse messages swallowed by dinput
132 from being dispatched)
[3161]133 - KERNEL32: Replaced os2.h includes by os2wrap.h (cvtcursorgrp & oslibdebug)
[3104]134 - WSOCK32: Fixed bug in setsockopt for SO_SNDBUF/SO_RCVBUF (OS/2's
135 winsock returns WSAEINVAL if size > 64k)
[3100]136
[3097]137 2000-03-12: Michal Necasek <mike@mendelu.cz>
138 - dsound\new: Fixed sound in Heroes of M&M III
139
[3094]140 2000-03-11: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
[3161]141 - OPENGL\GLIDE: Fix for Voodoo 1 glide (missing io ports)
[3094]142
[3089]143 2000-03-11: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
144 - OPENGL\GLUT: Fix for gettimeofday. This is defined conflicting in
145 the toolkit sys\time.h.
146 - TOOLS\BIN: Implemented an optional directory locking in
147 dowithdirs.cmd. (Useful for SMP builds.)
148
[3085]149 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
[3161]150 - OPENGL\GLUT: Fixed compile problems + cleanup
[3089]151 (use C(XX)FLAGS_WIN32APP so you don't have to
[3085]152 explicitely specify which api type you use (ascii or unicode)!)
153
[3161]154 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
155 - include\win\debugtools.h: Disable TRACE, WARN etc when DEBUG is not defined
[3085]156
[3080]157 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
158 - OPENGL: Fixed error preventing build to complete
159
[3077]160 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
161 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
[3080]162 Create DDRAW & DSOUND registry keys in InitRegistry
[3077]163 (NOTE: Must be done in install program!)
164 Added some win95 stubs
[3080]165 - GDI32: Added 16 bits device apis stubs
[3077]166
[3073]167 2000-03-10: Michal Necasek <mike@mendelu.cz>
168 - dsound\new: Changed DART buffer size calcualation, hopefully
169 WinAmp will sound better now.
170
[3069]171 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
172 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
173 - tools\bin\Exists.cmd: New tool which checks if the file passed in
174 exists. If the file exists it returns 0, else 1. This is
175 used to check if .depend and other files exists in the
176 makefiles. (See pdwin32.post to see how.)
177 - include\pdwin32.post: .depend is only included if it exists. You'll
178 get a warning if it don't, but the makefile works fine.
179 Added a check on OBJDIR not being empty in the clean rule.
180 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
181 OBJDIR is empty.
182 - win32k: Updated makefile with the use of EXISTS for both .depend and
183 makfile.inc. An update check for makefile.inc <-> configure.cmd
184 was also added.
185 Added checks for empty variables in clean rule, and we no longer
186 deletes * in any directory.
187
188 A CVS tip:
189 When new directories are added you have to to a 'cvs checkout .'
190 from the root.
191 A 'cvs update' don't get the new directories it seems
192 (There have been added some dirs under win32k lately so please do this.)
193
[3061]194 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
[3069]195 - KERNEL32: Major rewrite of PE loader classes to correctly support
[3061]196 dll dependencies
197 TODO: Circular dependencies only partly working
[3077]198 (a->b->a works, but a->b->c->a doesn't)
[3069]199 - USER32: Fixed bug in dialog constructor (class name translation)
[3061]200 (only showed up in release build)
[3070]201 Dinput mouse changes/fixes
[3061]202
[3049]203 2000-03-08: Michal Necasek <mike@mendelu.cz>
[3050]204 - dsound\new: Fixed volume and panning calculation that
205 sometimes caused ugly noise
206
207 2000-03-08: Michal Necasek <mike@mendelu.cz>
[3049]208 - dsound\new: Completely new DART-based DirectSound. Works fine
209 for me with Quake 3, Moorhuhn and WinAmp.
210
[3069]211 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3034]212 - makefiles and include\pdwin32.*:
213 * Updated nearly all makefiles to the new makefile style.
214 Win32k, pe2lx and some subdirs of Winmm
215 * Odin32 resource files are now to have the extention .orc
216 All files have, save some under WinMM and in old/new dirs,
217 been renamed. There are now new interference rules in
218 pdwin32.tools which will create the resource assembly and
219 assemble it into an object file. So you simply have to
220 specify the output object file for Odin32 resources along
221 with the other object files.
222 * A little not on forwarders. ILINK returns a warning code of
223 4 when aliases are generated. An errorcode <> 0 stops NMAKE
224 normally. To workaround these problem we simply tell NMAKE to
225 accespt all error codes in the range 0-4. This is done by
226 putting '-4 ' in front of the $(LD2) statement.
227 I don't want to see _any_ '-$(LD2)'!!!
228
229
[3029]230 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
[3049]231 - USER32: Fixed bug in edit control
232 If nyoff > nr lines in control -> bottom line in control
233 window should show last line of control
234 Wine code shows last line at the top of the control
235 (Quake 3 startup edit control shows the problem)
[3029]236
[3034]237 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3025]238 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
239 OS/2 resource compiler and the flags used during compilation.
240 When it comes to linking we should assume NO flags and simply
241 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
242 (See src\kernel32\makefile for an example.)
243
[3022]244 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
245 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
246 error in calling convention prototype in glutint.h
247
[3000]248 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
249 - GLUT32: Added logic to escape from optimizer bug in VACPP
250
[2997]251 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
[3021]252 - fastdep: Simple preprocessor. Commments and #if 0/1.
[3012]253 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
254 Didn't concider the NODEBUGINFO macro causing daily builds
255 to become enormous. Daily build of 6MB is not good!.
[2997]256 - include\pdwin32.v*.*:
257 *Alternate linker tool, LD2. This is ilink for VAC.
258 (See src\kernel32\makefile for hints how to use it).
259 *Synced configuration for the two VAC versions.
260
261 NOTE that NODEBUGINFO and DEBUGALL is handled within these
262 files. You don't have to test for them to set the correct
263 compiler and linker flags, this is allready done!
264
[2993]265 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
[3022]266 - INCLUDE\pdwin32.tools, pdwin.vac*
[3018]267 Added new build rules (conditional at this time)
268 For each dll a subdir bin\release & bin\debug is created
269 in which the object files of the release & build version
270 are saved.
271 - INCLUDE\pdwin32.post
272 Common makefile rules to be included by all makefiles
[3049]273 - USER32\KERNEL32: Switched to new build rules
274 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
[3017]275 adjusted)
[3049]276 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
[3009]277 Partially fixed destruction of loaded dlls in ExitProcess
278 (TODO: dependencies are not yet right; needs new design)
[3049]279 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
[3009]280 to hmdevio.cpp
[3049]281 - USER32: Pass on keyboard messages if dinput handler returns TRUE
[3009]282 Also send non-client mouse messages to dinput
283 (TODO: always returns true after calling dinput handler)
[3049]284 - OPENGL\GLIDE:
285 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
[3009]286 to hmdevio.cpp (reported by Michal Necasek)
[2993]287
[2991]288 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
[2989]289 - DDRAW: Fixed bug in CreateSurface and QueryInterface
290 (Moorhuhn now starts fine with ddraw)
[2991]291 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
292 in the virtualKeyTable
[2993]293
294 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
[3000]295 - KERNEL32: Create shell dirs in odin\bin directory
[2981]296 Cleanup (never call Open32 apis directly if the proc
297 isn't a wrapper; include win32api.h and call Odin api)
298 Fixed FS corruption for DosAliasMem
[2986]299 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
300 fixup section doesn't start on page boundary)
[3000]301 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
[2981]302 there (importing them directly creates a circular
303 dependency (kernel32->advapi32->kernel32))
304 Should probably be moved to ntdll
[3000]305 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
[2986]306 (Realplayer 7 audio now works (when playing .rm files))
[2981]307
[2980]308 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
[3000]309 - KERNEL32: Fixed calling convention bug in conprop2.cpp
[2980]310 (caused crashes with release build)
311
[2966]312 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
[3000]313 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
314 - OPENGL\MESA: Reapplied TLS fixes
[2975]315 Check for null pointer in wglSetPixelFormat
[3000]316 - OPENGL\MESA\3dfx: Use c files from Mesa dir
[2975]317 Check for null pointer in wglSetPixelFormat
[3000]318 - WINMM: Fixed DartWaveOut::getPosition (overflow)
[2972]319 (fixes mp3 playback in RealPlayer 7)
[3000]320 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
[2974]321 if app wants to change dir to "\")
322 Create shell folders + shell keys
323 (NOTE: This has to be done in the odin install program
324 once we have one)
[3000]325 - ADVAPI32: Added crypt api stubs
[2966]326
[2962]327 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
328 - OPENGL: Implemented DIVE support in Mesa
329
[2957]330 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
[2974]331 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
332 (FindWindowExW was not working correctly either)
333 First send WM_NCACTIVATE, then WM_ACTIVATE
334 Fixed focus problems with Odin apps
335 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
336 WinSetActiveWindow when a user clicks on the titlebar
337 of an inactive window & after sending WM_MOUSEACTIVATE)
338 TODO: Does WinSetActiveWindow work properly or should we
339 always call WinSetFocus???
340 Call Dinput handler when translating mouse & keyboard
341 messages (during Get/PeekMessage)
342 - OPENGL: Always build release version of glide, mesa, glu32 & glut
343 Build mesa software & 3dfx dlls; don't build OS/2 opengl
344 wrapper anymore
345 - OPENGL\GLIDE\CVG\GLIDE:
346 Disable instruction scheduling in release build -> messed up
[3000]347 colors when turned on (most likely VAC optimizer bug)
[2974]348 TODO: Somebody should also check this for the voodoo 1 glide dll.
[3000]349 - OPENGL\GLIDE\CVG:
350 Fixed makefile
351 - OPENGL\MESA\GL\gl.h
352 Removed circular header dependency (breaks build)
353 - OPENGL\MESA\3dfx:
[3049]354 Copy 3dfx opengl32.dll to bin\glide
[2957]355
356 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
[3049]357 - USER32: Fixed dprintf in CreateWindowExW
[3100]358 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
[2957]359
Note: See TracBrowser for help on using the repository browser.