source: trunk/changelog@ 3141

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

* empty log message *

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