source: trunk/changelog@ 3029

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

* empty log message *

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