source: trunk/changelog@ 2958

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

* empty log message *

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