source: trunk/changelog@ 3022

Last change on this file since 3022 was 3022, checked in by jeroen, 26 years ago

* empty log message *

File size: 40.8 KB
Line 
1 /* $Id: changelog,v 1.785 2000-03-05 10:21:10 jeroen Exp $ */
2
3 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
4 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
5 error in calling convention prototype in glutint.h
6
7 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
8 - GLUT32: Added logic to escape from optimizer bug in VACPP
9
10 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
11 - fastdep: Simple preprocessor. Commments and #if 0/1.
12 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
13 Didn't concider the NODEBUGINFO macro causing daily builds
14 to become enormous. Daily build of 6MB is not good!.
15 - include\pdwin32.v*.*:
16 *Alternate linker tool, LD2. This is ilink for VAC.
17 (See src\kernel32\makefile for hints how to use it).
18 *Synced configuration for the two VAC versions.
19
20 NOTE that NODEBUGINFO and DEBUGALL is handled within these
21 files. You don't have to test for them to set the correct
22 compiler and linker flags, this is allready done!
23
24 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
25 - INCLUDE\pdwin32.tools, pdwin.vac*
26 Added new build rules (conditional at this time)
27 For each dll a subdir bin\release & bin\debug is created
28 in which the object files of the release & build version
29 are saved.
30 - INCLUDE\pdwin32.post
31 Common makefile rules to be included by all makefiles
32 - USER32\KERNEL32: Switched to new build rules
33 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
34 adjusted)
35 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
36 Partially fixed destruction of loaded dlls in ExitProcess
37 (TODO: dependencies are not yet right; needs new design)
38 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
39 to hmdevio.cpp
40 - USER32: Pass on keyboard messages if dinput handler returns TRUE
41 Also send non-client mouse messages to dinput
42 (TODO: always returns true after calling dinput handler)
43 - OPENGL\GLIDE:
44 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
45 to hmdevio.cpp (reported by Michal Necasek)
46
47 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
48 - DDRAW: Fixed bug in CreateSurface and QueryInterface
49 (Moorhuhn now starts fine with ddraw)
50 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
51 in the virtualKeyTable
52
53 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
54 - KERNEL32: Create shell dirs in odin\bin directory
55 Cleanup (never call Open32 apis directly if the proc
56 isn't a wrapper; include win32api.h and call Odin api)
57 Fixed FS corruption for DosAliasMem
58 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
59 fixup section doesn't start on page boundary)
60 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
61 there (importing them directly creates a circular
62 dependency (kernel32->advapi32->kernel32))
63 Should probably be moved to ntdll
64 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
65 (Realplayer 7 audio now works (when playing .rm files))
66
67 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
68 - KERNEL32: Fixed calling convention bug in conprop2.cpp
69 (caused crashes with release build)
70
71 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
72 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
73 - OPENGL\MESA: Reapplied TLS fixes
74 Check for null pointer in wglSetPixelFormat
75 - OPENGL\MESA\3dfx: Use c files from Mesa dir
76 Check for null pointer in wglSetPixelFormat
77 - WINMM: Fixed DartWaveOut::getPosition (overflow)
78 (fixes mp3 playback in RealPlayer 7)
79 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
80 if app wants to change dir to "\")
81 Create shell folders + shell keys
82 (NOTE: This has to be done in the odin install program
83 once we have one)
84 - ADVAPI32: Added crypt api stubs
85
86 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
87 - OPENGL: Implemented DIVE support in Mesa
88
89 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
90 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
91 (FindWindowExW was not working correctly either)
92 First send WM_NCACTIVATE, then WM_ACTIVATE
93 Fixed focus problems with Odin apps
94 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
95 WinSetActiveWindow when a user clicks on the titlebar
96 of an inactive window & after sending WM_MOUSEACTIVATE)
97 TODO: Does WinSetActiveWindow work properly or should we
98 always call WinSetFocus???
99 Call Dinput handler when translating mouse & keyboard
100 messages (during Get/PeekMessage)
101 - OPENGL: Always build release version of glide, mesa, glu32 & glut
102 Build mesa software & 3dfx dlls; don't build OS/2 opengl
103 wrapper anymore
104 - OPENGL\GLIDE\CVG\GLIDE:
105 Disable instruction scheduling in release build -> messed up
106 colors when turned on (most likely VAC optimizer bug)
107 TODO: Somebody should also check this for the voodoo 1 glide dll.
108 - OPENGL\GLIDE\CVG:
109 Fixed makefile
110 - OPENGL\MESA\GL\gl.h
111 Removed circular header dependency (breaks build)
112 - OPENGL\MESA\3dfx:
113 Copy 3dfx opengl32.dll to bin\glide
114
115 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
116 - USER32: Fixed dprintf in CreateWindowExW
117 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
118
119 2000-02-29: Edgar Buerkle <Edgar.Buerkle@gmx.net>
120 - USER32: Added support for keyboard hooks (fixes Moorhuhn)
121 in PeekMessage & GetMessage
122
123 2000-02-29: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
124 - TOOLS\FASTDEP: Restructured it a little. Support for multiple
125 languages:
126 C and C++ (as earlier)
127 Assembly
128 Resource files (OS/2 resources at least...)
129 COBOL (just for fun! - I'll use it at job)
130 Things seems to work ok, but if an error occurs, please
131 fix it or send me a note and I'll fix it ASAP.
132
133 2000-02-29: Sander van Leeuwen <sandervl@xs4all.nl>
134 - OPENGL\MESA: Added Odin port of Mesa Opengl library
135 (Ported by Jeroen van den Horn)
136 NOTE: The Mesa 3D graphics library has a different license
137 (see LICENSE.TXT in the Mesa directory)
138 - OPENGL\MESA\3DFX:
139 Added Odin port of 3dfx Voodoo Mesa GL
140 (tested with simple opengl samples only, but
141 this is the first hardware accelerated Opengl
142 implementation for OS/2!)
143 NOTE: The Mesa 3dfx graphics library has a different license
144 (see LICENSE.TXT in the Mesa\3dfx directory)
145 - KERNEL32: Only call ExitProcess the first time KillWin32Process
146 is executed. Call DosExit otherwise.
147 Fix for GpdDev device io (needed for native glide dll)
148
149 2000-02-28: Sander van Leeuwen <sandervl@xs4all.nl>
150 - KERNEL32: Call ExitProcess in KillWin32Process to make sure
151 the dll libmain handlers are called after a crash.
152 (i.e. Glide needs this to restore the display)
153 - INCLUDE\WIN: Added wgl definitions to wingdi.h
154
155 2000-02-27: Sander van Leeuwen <sandervl@xs4all.nl>
156 - WINMM: Implemented waveOutGetPosition
157
158 2000-02-27: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
159 - pdwin32.tools: "New" tool, MAKE_CMD. Passes on the DEBUG and
160 NODEBUGINFO macros variables to the next make job.
161 (It's better to have it here than to have it in nearly
162 all makefiles, and forgetting to put it there...)
163 - WIN32K: *The dep rule will make a makefile.inc if not present. It
164 will also make dependencies for pe2lx and lib.
165 *Have created a lib rule.
166 *The all rule will now make Pe2Lx.
167 - src/makefile: win32k makes pe2lx, no need for special pe2lx stuff.
168
169 Sander, have a look the build and rebuild rules please.
170
171 2000-02-26: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
172 - WIN32K: *Symbol Database is implemented. Contains symbols for most
173 retail kernels. (see win32k.txt or readme.txt)
174 *No scanning of the os2krnl file, the loaded image is now
175 scanned to determin which build, debug/retail and smp/uni.
176 *16-bit logging.
177 *Extract.exe rule. Extract.exe program generates the
178 SymDb.c source file found in dev16 from a collections of
179 kernel symbol files.
180
181 2000-02-25: Christoph Bratschi <cbratschi@datacomm.ch>
182 - COMCTL32: added listview unicode support
183 fixed treeview WM_VSCROLL, trap in UNILIB
184
185 2000-02-24: Achim Hasenmueller <achimha@innotek.de>
186 - COMCTL32: Added infoPtr == NULL checks in tooltips control
187 to prevent crashes when tooltip creation fails
188
189 2000-02-25: Sander van Leeuwen <sandervl@xs4all.nl>
190 - OPENGL\GLIDE: Added Odin version of Glide based on the OS/2 port
191 written by Craig Ballantyne. (Voodoo 1 & Voodoo 2)
192 NOTE: Includes 3dfx Glide license
193
194 2000-02-24: Sander van Leeuwen <sandervl@xs4all.nl>
195 - USER32: WS_MAXIMIZE & WS_MINIMIZE flags updated when necessary
196 Changed/fixed RedrawWindow -> fixes lack of erase background
197 msg in AbiWord rebar control & Papyrus start dialog
198 TODO: Pingpong.exe broken again. Need to fix this correctly
199 Hide caret in BeginPaint, show it in EndPaint
200 - GDI32: CreateICA/W bugfix (Open32 tests lpszDriver for NULL even though it's ignored)
201 (fixes Papyrus error message about CreateIC)
202 - COMCTL32: Fixed wrong calling convention for property sheet handlers
203 (prsht.h in include\win)
204 This fixes crashes in VPBUDDY (preferences dialog) AND (!)
205 fixes the empty preferences dialog in both debug & release
206 builds.
207 NOTE: I've fixed similar bugs before. Somebody should verify
208 all comctl32 handlers...
209
210 2000-02-23: Christoph Bratschi <cbratschi@datacomm.ch>
211 - USER32: export 55AA pattern functions for COMCTL32
212 fixed EN_CHANGED
213 - COMCTL32: converted to C++ -> needs nmake dep
214 ported animate control
215
216 2000-02-22: Sander van Leeuwen <sandervl@xs4all.nl>
217 - WINMM/GDI32/KERNEL32/USER32: Fixed compile problems for release build
218 - USER32: Fixed bug in window class ctor (windowProc not set to 0)
219 (only showed up in release build)
220 - KERNEL32: Fixed bug in commitPage (winimagepeldr.cpp)
221 (only showed up in release build)
222 Fixed wrong calling convention for SetLastError calls
223 in OSLibiGetModuleHandleA
224 (only showed up in release build)
225 Fixed wrong calling convention for SetLastError calls
226 in oslibdos.cpp.
227
228 2000-02-22: Christoph Bratschi <cbratschi@datacomm.ch>
229 - COMCTL32: merged with Corel WINE 20000212
230 added common base functions
231
232 2000-02-21: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
233 - CRTDLL: Added wtol, wtoi, setsystime, getsystime
234
235 2000-02-21: Christoph Bratschi <cbratschi@datacomm.ch>
236 - USER32: merged controls and nc code with Corel WINE 20000212
237 added WS_EX_CONTEXTHELP button
238
239 2000-02-21: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
240 - WIN32K: *Initial support for UNIX-styled scripts
241 (files starting with an #!<interpreter> [args...])
242 This is a _very_ big hack! But never the less it's working.
243 (or at least it seems like working...)
244 *The kernel symbol importer is enhanced to support more
245 generic function prologs and to import variables and
246 16-bit functions.
247 *Segments are now locked in physical memory.
248 (Note, last changes have not been tested on Aurora yet,
249 but it will hopefully work just fine.)
250
251 2000-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
252 - GDI32: SetDIBits bugfix (for dib sections)
253 - USER32: Ported all Wine accelerator apis (fixes keys in calc)
254
255 2000-02-21: Jens Wiessner <wiessnej@rfi.de>
256 - RASAPI32: Added stubs
257 - OLEPRO32: Ported Corel Wine stub dll
258 - CRTDLL: Replaced some stubs
259
260 2000-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
261 - OPENGL\GLIDE: Added Odin version of Glide based on the OS/2 port
262 written by Craig Ballantyne. (Voodoo 1)
263 NOTE: Includes 3dfx Glide license
264
265 2000-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
266 - KERNEL32: Fixed memory map view bug (main map deleted when there
267 were still views left) -> fixes crash when playing Realplayer
268 video (.rm) files
269 - WINMM: Added new logging feature + fixed waveout query format bug
270
271 2000-02-16: Christoph Bratschi <cbratschi@datacomm.ch>
272 - COMCTL32: treeview: switched to unicode, fixed many bugs
273
274 2000-02-16: Sander van Leeuwen <sandervl@xs4all.nl>
275 - KERNEL32/USER32/GDI32: Added new logging feature which allows users
276 to disable or enable logging for separate source
277 files. (see Logging.txt for details)
278 - GDI32: SetDIBitsToDevice fix for RealPlayer 7 (store the right bitmap
279 size in the BITMAPINFO structure before calling Open32)
280
281 2000-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
282 - USER32: SetWindowPos bugfix (returned before hiding or showing windows)
283 Fixes Delphi apps
284 - KERNEL32: Fixed Release method of LX dlls (didn't delete object)
285 Fixed cpuhlp assembly functions (compiler changes calling
286 convention with optimizations on (stores parameter in eax
287 instead of on the stack)
288
289 2000-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
290 - COMCTL32: Added Wine license
291 - KERNEL32: Search in path for dlls if the pe loader can't find them
292 (RP7 loads pngu3264.dll by changing PATH and then calling
293 LoadLibrary)
294
295 2000-02-14: Christoph Bratschi <cbratschi@datacomm.ch>
296 - USER32: merged combobox with Corel 20000212
297 - COMCTL32: merged treeview with Corel 20000212 and continued rewrite
298
299 2000-02-12: Christoph Bratschi <cbratschi@datacomm.ch>
300 - USER32: added v5.00 messages to wndmsg.cpp
301 - GDI32: LineDDA fix
302
303 2000-02-12: David Raison <djr@lemur.co.uk>
304 - OLE32: Fixed IsEqualIID issue
305
306 2000-02-11: Vit Timchishin <tvv@sbs.kiev.ua>
307 - KERNEL32: Fix for OpenFile; fill in OFSTRUCT even if api fails
308 (needed for Acrobat Reader 4.0)
309
310 2000-02-10: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
311 - /tools/database/ + /src/makefile: Odin32 API DB.
312
313 2000-02-10: Christoph Bratschi <cbratschi@datacomm.ch>
314 - USER32: added some stubs
315 fixed wrong pixels at the right side of menu items
316 - COMCTL32: implemented LVS_NOSORTHEADER
317 increased statusbar height (temporal hack)
318 first steps of treeview rewrite
319
320 2000-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
321 - GDI32: Added support for memory map handles in CreateDIBSection
322 Fixed CreateICA/W; Open32's version is case sensitive whereas
323 win32's apparently isn't.
324 - TOOLS\makefile: fixed clean build
325 - src\makefile: fixed clean build
326 - src\makefile.smp: fixed incorrect dir change
327
328 2000-02-10: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
329 - *: Updated the source tree to use autogenerated dependencies.
330 You will have to do a 'nmake dep' from either /src or / before
331 being able to make anything.
332 -All makefiles is required to have a 'dep' rule.
333 -All dll makefiles is now required to have a 'lib' rule which
334 makes the libraries for the module. This rule should also
335 check that the library in $(PDWIN32_LIB) is up-to-date.
336 - Tools/FastDep: Dependency tool. (Fast=Quick-and-Dirty)
337 Moved from /src/win32k. This is currently used to generate
338 dependency information.
339 Note that it doesn't have any precompiler logic! This is causeing
340 some warnings...
341 - include/pdwin32.tool: Two new tools DEPEND and DOWITHDIRS.
342 - src/makefile: used the DOWITHDIRS to do cleanup, lib and dep.
343
344 2000-02-10: Edgar Buerkle <Edgar.Buerkle@gmx.net>
345 - GDI32: Fix alignment for 1 & 4 bits bitmaps (dibsection)
346 - NTDLL: Pretend no debugger is active in NtQueryInformationProcess
347
348 2000-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
349 - USER32: Implemented WaitForInputIdle
350 ScrollWindow fix; don't call InvalidateRect as WinScrollWindow
351 already invalidates the area (and the call to InvalidateRect was
352 wrong as it has to include the erase flag; should have called
353 RedrawWindow instead)
354 - KERNEL32: WinExec: Wait for process to block on input before
355 returning
356 - OpenGL base, GLUT, GLU: Added version resource, removed dll exitlist
357 handlers
358
359 2000-02-09: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
360 - OpenGL base, GLUT, GLU: NODEBUGINFO implemented in the makefiles.
361
362 2000-02-09: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
363 - ODIN.INI: OPENGL32.DLL <--> OPENGL.DLL translation, since
364 WinXX OpenGL apps can be dynamically linked with
365 MS OpenGL (OPENGL32.DLL) *or* SGI OpenGL (OPENGL.DLL).
366
367 2000-02-09: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
368 - OpenGL base: Various minor fixes
369 - OpenGL GLUT: Various minor fixes
370 - OpenGL GLU: 'Native' port of SGI GLU
371
372 2000-02-08: Knut Stange Osmundsen <knut.stange.osmundsen>
373 - Win32k: Temporarily disabled some unused imported kernelfunctions.
374 Corrected a problem with overloading _ldrEnum32bitRelRecs;
375 it failed on WS4eB. (Message 'DosDevIOCtl failed')
376
377 2000-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
378 - USER32: Don't use shell positioning for child windows (breaks Notes)
379 Turn of WM_BACKERASEBKGND when calling RedrawWindow to
380 invalidate a window (without erase flag set; but also without
381 noerase) -> fixes flickering in pingpong Opengl sample
382 - KERNEL32: Search path for executables when they can't be found in
383 the current directory.
384
385 2000-02-07: Christoph Bratschi <cbratschi@datacomm.ch>
386 - KERNEL32: Ported more Wine thunk apis
387
388 2000-02-07: Sander van Leeuwen <sandervl@xs4all.nl>
389 - USER32: Fix for DCX_INTERSECTRGN in GetDCEx (use ExtSelectClipRgn
390 to combine current & new clip region)
391 - ADVAPI32: Ported Wine LookupAccountSidA/W (semi-stubs now)
392
393 2000-02-06: Jens Wiessner <wiessnej@rfi.de>
394 - WINMM: Updated MCI dlls (added version info)
395
396 2000-02-06: Sander van Leeuwen <sandervl@xs4all.nl>
397 - KERNEL32: Changed GetProcessDword ordinal to 18
398 - USER32: Temporarily commented out shellposition changes
399 (breaks i.e. calc & Notes)
400 Started rewriting BeginPaint/EndPaint + DC apis
401
402 2000-02-06: Christoph Bratschi <cbratschi@datacomm.ch>
403 - USER32: ported WinHelpA from WINE
404
405 2000-02-05: Christoph Bratschi <cbratschi@datacomm.ch>
406 - USER32: WM_SETHOTKEY: save data
407 prototype for WS_EX_CONTEXTHELP button
408 check WS_EX_RIGHT in button control
409 fixed tasklist entry
410 implemented CW_USEDEFAULT with FCF_SHELLPOSITION
411
412 2000-02-05: Sander van Leeuwen <sandervl@xs4all.nl>
413 - KERNEL32: Memory map fixes (file maps)
414 - USER32: mdi child creation fix (child still not activated when created)
415 Default WM_ERASEBKGND handler change (only erase invalid area)
416 (note: might be wrong; have to check this in NT; probably
417 need to rewrite code that sends those messages)
418 -> fixes redraws for i.e. windows behind menu windows
419 - GDI32: Don't use Open32 apis to load opengl32 (nor for GetProcAddress)
420 Import wgl* apis
421 - OPENGL: Removed OS2wgl apis (they had the wrong calling convention
422 -> causes crashes in gdi32 when compiled with optimizations on)
423
424 2000-02-04: Markus Montkowski <mmontkowski@gmx.de>
425 - DDRAW: Many minor/major bugfixes at numerous places
426 - DSOUND: Fixed GetCurrentBufferPos in the virtual player
427
428 2000-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
429 - ALL: Added version resource (if not already present)
430 Link with dllentry.obj (those dlls that don't need custom dll
431 entrypoints)
432 Clean up in process detach handler of win32 libmain
433 (except for a few core dlls (gdi32/user32/kernel32))
434 - DLLENTRY: Standard dll entrypoint
435
436 2000-02-04: Christoph Bratschi <cbratschi@datacomm.ch>
437 - COMCTL32: merged with WINE 20000130
438
439 2000-02-03: Jens Wiessner <wiessnej@rfi.de>
440 - NTDLL: Ported Wine security apis
441 - CRTDLL: Update
442
443 2000-02-03: Christoph Bratschi <cbratschi@datacomm.ch>
444 - USER32: merged controls with WINE 20000130
445
446 2000-02-03: Daniela Engert <dani@ngrt.de>
447 - GDI32: Implement RGB 555 to RGB 565 conversion in assembler
448
449 2000-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
450 - WININET: Ported Wininet code from Corel Wine tree
451 - INCLUDE\WINSOCK: MS Winsock compatible header
452 - GDI32: Prelimary RGB 555 to RGB 565 conversion in SetDIBitsToDevice
453 (will be rewritten in assembly for better performance)
454 (for RealPlayer videos in 16 bits mode)
455 BitBlt fix (return after dibsection blit -> fixes Quake 2)
456 Added MMX RGB conversion.
457 - USER32: Added export for OS2ToWin32Handle
458 - COMDLG32: Merged with latest Wine version (20000109)
459 - INCLUDE\WIN: Fixes to compile comdlg32 in C mode
460 (will be rewritten in assembly for better performance)
461 (for RealPlayer videos in 16 bits mode)
462 BitBlt fix (return after dibsection blit -> fixes Quake 2)
463
464 2000-02-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
465 - OPENGL: Ported SGI GLUT sources + Opengl update
466
467 2000-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
468 - GDI32: Cleaned up
469 Fixes for dib section apis. RealPlayer 7 can play videos
470 now (correct in 24 bps mode; upside down and wrong colors
471 in 16 bps mode)
472
473 2000-02-01: Knut Stange Osmundsen <knut.stange.osmundsen>
474 - Pe2Lx: Makefile should be working again.
475 - KERNEL32: RegisterPe2LxDll - no detach is done for Pe2Lx/Win32k DLLs.
476 This is a temporary fix.
477
478 2000-02-01: Patrick Haller <phaller@gmx.net>
479 - SHELL32: Added PathSkipRootAW
480
481 2000-02-01: Jens Wiessner <wiessnej@rfi.de>
482 - NTDLL: Updated .def file (similar to NT 4 SP6) + bugfix for impdef
483
484 2000-01-31: Sander van Leeuwen <sandervl@xs4all.nl>
485 - USER32: GetDCEx with window handle 0 fails in Windows 98; now it also
486 returns an error in Odin.
487 GetWindowDC & GetDC use the desktop window handle if hwnd == 0
488 (before calling GetDCEx)
489 - GDI32: Set dibsection bitmap data to 0 when allocating it.
490
491 2000-01-30: Sander van Leeuwen <sandervl@xs4all.nl>
492 - PELDR: Fixed error messages for images without fixups (peldr.dll no
493 longer required)
494 - GDI32: Removed wrong bugfix for GetDIBits (breaks Lotus Notes)
495 - USER32: Don't check for window visibility when calling SetWindowPos
496 in SetMenu. (fixes menu in standard minesweeper)
497 (NOTE: May need to call SetWindowPos with SWP_FRAMECHANGED
498 when showing a window (see Wine code))
499 Put back GetMenuStringA fix (return length of string if string pointer
500 or size parameter == 0) (almost fixes Realplayer 7 menu)
501
502 2000-01-29: Sander van Leeuwen <sandervl@xs4all.nl>
503 - GDI32: Save and restore FPU control word when calling
504 Open32's DrawText. DrawText trashes it which causes drawing
505 problems in RealPlayer 7.
506 - USER32: Call DrawTextA in uitools.cpp, not Open32's DrawText.
507 Fix for SetWindowPos for showing hidden windows
508 (call ShowWindow) -> fixed non-visible button bar in mIRC
509 Don't set WS_VISIBLE on by default. Windows are made visible
510 during creation by calling ShowWindow.
511 Call UpdateWindow for client window, not the frame.
512 - INCLUDE\WIN\wingdi.h: Added GdiFlush declaration
513 - INCLUDE\makefiles: Added c/c++ definitions for win32 apps (without
514 -D__WINE__ so you don't need to specify whether you use the ascii
515 or unicode version of a win32 api)
516
517 2000-01-29: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
518 - KERNEL32: Added GlobalWire/GlobalUnwire
519
520 2000-01-28: Sander van Leeuwen <sandervl@xs4all.nl>
521 - GDI32: Wrong return values for GetDIBits & SetDIBitsToDevice
522 (nr of scan lines copied; not true/false)
523 - USER32: Don't call default frame handler for WM_ADJUSTWINDOWPOS
524 (fixes window resize when playing videos in RealPlayer v7 &
525 dragging titlebar in Professional Mine Sweeper)
526
527 2000-01-28: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
528 - Win32k: Heap is splitted into a swappable and a resident heap.
529 Fixups are now applied when a page is loaded from disk.
530 This is done by overloading the kernel function called
531 (_)ldrEnum32bitRelRecs. This should improve performance a lot!
532
533 2000-01-27: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
534 - OPENGL: First version of opengl implementation
535
536 2000-01-27: Sander van Leeuwen <sandervl@xs4all.nl>
537 - USER32: Fixed FS corruption in OSLibPostThreadMessage
538 Send WM_CHILDACTIVATE to child windows (not only
539 to MDI children) instead of WM_ACTIVATE
540 - SHELL32: Fixed FS corruption in DragAcceptFiles
541
542 2000-01-26: Yuri Dario <mc6530@mclink.it>
543 - INCLUDE\WIN: Additions & changes for compiling Opera.
544 - many dlls: create correct library (impdef)
545
546 2000-01-26: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
547 - GDI32: Changes for Opengl support
548
549 2000-01-26: Christoph Bratschi <cbratschi@datacomm.ch>
550 - USER32: fixed WM_MOVE, MsgFormatFrame and WM_WINDOWPOS* to use parent
551 coordinates
552 changed min frame size
553 - COMCTL32: fixed wrong progress frame
554
555 2000-01-26: Sander van Leeuwen <sandervl@xs4all.nl>
556 - OLEAUT32: Don't create logfile when logging is turned off
557 - PELDR: Don't modify cmd line in PIB structure
558 - INCLUDE: Removed string.h.
559 - KERNEL32: Added workaround for OS/2 DosSetMem bug in VirtualAlloc
560 (if memory is reserved, set read & write page flags)
561
562 2000-01-25: Sander van Leeuwen <sandervl@xs4all.nl>
563 - PELDR/KERNEL32: Allocate low memory at right address and with right size
564 in peldr.dll (fixes install of Windows Media Player)
565 - KERNEL32: Print thread id for each log message
566
567 2000-01-22: Michal Necasek <mike@mendelu.cz>
568 - DINPUT: Fixes + basic functionality is complete; enough for many games
569
570 2000-01-21: Sander van Leeuwen <sandervl@xs4all.nl>
571 - USER32: Put back old WM_MOVE, MsgFormatChanged & OSLibSWPToWINDOWPOSFrame
572 Previous changes broke many apps (VPBuddy, MIrc32)
573 Don't update window if style changes (responsibility of the app)
574 Store window menu & id in same variable (fixes clock ->
575 double click on analog window -> titlebar & menu gone; menu
576 used to stay there)
577 Put back WM_CALCVALIDRECT code in pmwindow. Fixes updates
578 of clock window (who's class has CS_H/VREDRAW style).
579 - KERNEL32: Fixed image loading for resource lookup only (don't care
580 where those images are loaded as we only use it to query
581 the version resource; so base address doesn't matter)
582 (-> RealPlayer 7 installs now)
583
584 2000-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
585 - KERNEL32: Disabled creation of pe_x.log if logging disabled
586 Only get codepage once from odin.ini.
587
588 2000-01-20: Vit Timchishin <tvv@sbs.kiev.ua>
589 - KERNEL32: Codepage bugfix & unicode translation changes (heapstring.cpp)
590 - GDI32: Added codepage support for CreateCompatibleDC
591
592 2000-01-20: Christoph Bratschi <cbratschi@datacomm.ch>
593 - USER32: fixed WM_CONTEXTMENU
594 dispatch WM_MOUSEMOVE in menu loop
595
596 2000-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
597 - USER32: Removed 'old' user32 and replaced it with the new one
598 Call default window proc when DefMDIChildProcA/W is called
599 for a non-MDI window.
600 Fixed menu check & submenu marks painting
601 - KERNEL32: Increased shared heap reserve size to 512 kb
602 - SHELL32: Display Odin logo in Shell about dialog box
603
604 2000-01-18: Jens Wiessner <wiessnej@rfi.de>
605 - WINMM\WAVEMAP
606 Updated to Wine level 20000109 + corrected compile
607 - MCICDA: ported MCICDA.DLL from Wine 20000901 (Linux cdrom calls stubbed
608 so it doesn't work)
609
610 2000-01-17: Sander van Leeuwen <sandervl@xs4all.nl>
611 - USER32\NEW: Added basic support for DInput WM_CHAR notification
612 (the rest needs to be done in dinput.dll)
613 Use KEYBOARD_Enable user32 export to (un)register WM_CHAR
614 handler. (WNDPROC type) It's called when a WM_CHAR message
615 arrives for an Odin window with hwnd, msg, wParam & lParam.
616 - DINPUT: Fixed bugs reported by Michal Necasek
617
618 2000-01-16: Christoph Bratschi <cbratschi@datacomm.ch>
619 - USER32/NEW: implemented sysmenu commands: SC_SIZE and SC_TASKLIST
620 fixed WM_MOVE
621 changed HTCAPTION system menu position
622 changed maximized window position
623 don't move/size maximized windows
624
625 2000-01-15: Jens Wiessner <wiessnej@rfi.de>
626 - TWAIN_32: Update
627 - WINMM\MCIANIM,MCIAVI32,MCISEQ,MCIWAVE,MIDIMAP
628 Updated to Wine level 20000109 + corrected compile errors
629 - WINMM: Ported Wine wave mapper.
630
631 2000-01-15: Sander van Leeuwen <sandervl@xs4all.nl>
632 - USER32\NEW: Fixed scroll repaints (never use GetMessage with window
633 handle as that can prevent WM_PAINTs from being dispatched)
634 (may need reworking of Get/PeekMessage instead)
635 ScrollWindow changes
636 Removed frame drawing 'bugfix'.
637 Fixed system menu position for child windows (i.e. MDI)
638 Fixed titlebar tracking for child windows (i.e. MDI)
639 - KERNEL32: Check for null pointers in lstrcmpA
640
641 2000-01-15: Christoph Bratschi <cbratschi@datacomm.ch>
642 - USER32/NEW: cache menu and caption drawing
643 changed minimize button position
644 don't redraw system menu icon in menu.cpp
645 hilighted menubar items don't have an edge in Win9x
646 don't open system menu on mouseover if menubar is used and vice versa
647 show sysmenu on WM_NCRBUTTONUP with HTCAPTION set (todo: position)
648 use WIN32_STDCLASS2 for windows with CS_SAVEBITS class style
649
650 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
651 - USER32/NEW: added caption clipping for faster window text updates
652
653 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
654 - USER32\NEW: Fixed min/max bug for mdi child windows
655 Fixed DrawMenuBar (invalidate frame rectangle in
656 FrameUpdateClient if client rectangle wasn't changed)
657 Fixed bugs in MsgFormatFrame & SendNCCalcSize
658 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
659 (Winamp works now)
660 Removed code that's no longer used (subclassed OS/2 frame
661 controls & OS/2 scrollbar functions etc)
662
663 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
664 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
665 is activated or deactivated
666 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
667 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
668 Return window desktop handle for window handle returned by
669 SetActiveWindow if window is non-Odin.
670 Fixed activation of windows. (send WM_ACTIVATE when receiving
671 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
672 Fixed DrawFrame; bottom & right frame borders now drawn correctly
673 Fixed scrollbar positioning (style.exe)
674 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
675 DC to save/restore a window's own dc.
676 Fixed client rectangle problems. Client rectangles
677 are always in frame coordinates; window rectangles in
678 screen coordinates. Whenever necessary (i.e WM_MOVE)
679 client coordinates are converted to coordinates relative
680 to it's parent client window.
681 Changed WM_MOVE -> client coordinates relative to parent origin
682 if child; otherwise relative to screen origin. (needs testing)
683 (WM_NCCALCSIZE needs to be done as well)
684 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
685 - KERNEL32: Added DisableLogging & EnableLogging functions to
686 disable logging in parts of code. Logging will only be
687 done if the logcount is bigger than 0.
688
689 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
690 - USER32/NEW: fixed WM_CALCVALIDRECTS
691 activated WM_NCPAINT clipping
692 added improved frame redraw mechanism
693
694 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
695 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
696 handler anymore) -> fixes problems with Shell About dialog
697 and jumping controls when resizing (Winhlp32)
698 Fixed menu tracking for different submenus
699 Fixed delayed repaints of invalidated menu rectangles
700 Ported Wine messagebox code. (for GUI consistency)
701 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
702 in notepad)
703 Fixed 'frame' control updates (resizing client window in
704 SetWindowPos for SWP_FRAMECHANGED)
705
706 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
707 - TWAIN_32: Bugfix (removed test code)
708
709 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
710 - USER32/NEW: fixed AdjustWindowRectEx
711
712 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
713 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
714 Removed hardcoded dependancy on shell32; load it on-demand
715 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
716 Fixed wrong return value for OSLibWinGetMsg
717 Workaround for bug in GDI32 FillRect (menu items painted
718 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
719 Applied patch to Wine menu code for RealPlayer
720 Fixed default return value of DefWndProc (0)
721 Fixed SetMenu (menus should be set when a window is no child)
722 Call correct SetMenu function from MsgCreate Win32BaseWindow method
723 Use WIN32_INNERFRAME frame class for top level windows again.
724 (VPBuddy repaint problems were solved by using this class)
725
726 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
727 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
728 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
729 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
730 there's no audio device
731 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
732 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
733 or button down/up message translation.
734 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
735 Added WM_NCACTIVATE message generation
736 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
737 Changed GetSystemMenu; added method to Win32BaseWindow class
738 (destroy old menu if present and switch back to default system
739 menu if bRevert = TRUE; needs changes in non-client code)
740
741 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
742 - USER32/NEW: activated menu code
743
744 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
745 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
746 (borders are not drawn correctly)
747 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
748 client/window rectangle when size nor position have changed)
749 Fixed out of sync rectWindow. (children don't get notified of
750 parent position change -> rectWindow (in screen coord.) not updated)
751 Fixed LoadBitmap for system bitmaps
752 Fixes for win32 titlebar + added win32 system menu
753 System menu commands now work
754 Fixed repaint problem for win32 titlebar
755 Added Christoph's gradient filled title bars code
756 For (experimental) win32-like windows add this to odin.ini:
757 [CUSTOMIZATION]
758 OS2Look=0
759
760 [COLORS]
761 UseWinColors=1
762
763 2000-01-09: David Raison <djr@lemur.co.uk>
764 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
765
766 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
767 - USER32/NEW: implemented scrollbar nc handling
768 windows without menus work now fine
769 implemented gradient filled title bars
770
771 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
772 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
773 OSLibGetMsg bugfix + WM_QUIT translation fix
774 OSLibGetMenuItemRect fix (y coordinate conversion)
775 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
776 or button down/up message translation.
777 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
778 Added Wine-like license that supercedes the main Odin license
779 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
780 CRTDLL__CIatan etc etc)
781
782 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
783 - CRTDLL: Compile fix
784
785 2000-01-08: Patrick Haller <phaller@gmx.net>
786 - SHELL32: Update: to WINE level 2000/01/08
787 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
788
789 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
790 - GDI32: added PatBlt support for negative width/height
791
792 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
793 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
794 Faked RegisterServiceCtrlHandlerA/W (TODO)
795 Partly implemented SetServiceBits/SetServiceStatus
796 Improved QueryServiceStatus
797 Call RtlCreateAcl in InitializeAcl
798 - LZ32: Create correct library
799 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
800 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
801 (991212) (-> fixes errors in RealPlayer)
802 - USER32: GetMenuStringA fix (return length of string if string pointer
803 or size parameter == 0)
804
805 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
806 - TWAIN_32: Update
807
808 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
809 - USER32/NEW: single window works now
810
811 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
812 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
813 (should be changed)
814 MS Office 2000 install (first part) almost working.
815 (installs windows installer as system service)
816 - OLEAUT32: Typelib bugfix for MS Office 2k install
817 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
818
819 2000-01-05: David Raison <djr@lemur.co.uk>
820 - OLEAUT32: LHashValOfNameSys(A)
821
822 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
823 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
824
825 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
826 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
827 Delete old region in SetWindowRegion
828
829 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
830 - KERNEL32: Named pipe updates & bugfixes
831
832 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
833 - LZ32/TAPI32: Updated def files to match NT 4 SP6
834 - MSVCRT: Updated def files + MSVCRT40 version info
835 - WINMM: Added Wine's MCI dlls (not compiled as this requires
836 a working MCI subsystem in winmm and a redesign of
837 wave & midi)
838
839 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
840 - LZ32: Cleaned up .def file (don't import directly) & removed
841 debugtools.h
842 - USER32: Fixed PostThreadMessage + bugs in GetMessage
843 - KERNEL32: Set hmq & hab THDB values for newly created
844 threads (hmq not correct now)
845
846 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
847 - KERNEL32: Started implementing named pipe apis
848
849 2000-01-02: David Raison <djr@lemur.co.uk>
850 - OLEAUT32: Typelib fixes - Custom Data & Default values.
851 Added private logging to tlib_n.log when reading a TLIB.
852 (Should clarify what is being read & why)
853 Now supports embedded named TLIBS in the format
854 <path>\<libname>\<id> (required for VB6, etc.)
855 Preparatory work to reduce dependance on
856 current file position to enable delaying parsing
857 data until it is requested by user.
858
859 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
860 - USER32: Implemented Set/GetWindowRgn (not activated)
861 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
862 vfprintf during logging.
863 Cleaned up file io procedures in oslibdos.cpp
864
865 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
866 - USER32: Workaround for crash in Lotus Notes when switching to a new
867 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
868 has been called for a window -> don't dispatch this msg)
869
Note: See TracBrowser for help on using the repository browser.