source: trunk/changelog@ 2662

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

* empty log message *

File size: 20.3 KB
Line 
1 /* $Id: changelog,v 1.699 2000-02-05 15:57:01 sandervl Exp $ */
2
3 2000-02-05: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: Memory map fixes (file maps)
5 - USER32: GWL_STYLE change + mdi child creation fix
6 (child still not activated when created)
7 - GDI32: Don't use Open32 apis to load opengl32 (nor for GetProcAddress)
8 Import wgl* apis
9 - OPENGL: Removed OS2wgl apis (they had the wrong calling convention
10 -> causes crashes in gdi32 when compiled with optimizations on)
11
12 2000-02-04: Markus Montkowski <mmontkowski@gmx.de>
13 - DDRAW: Many minor/major bugfixes at numerous places
14 - DSOUND: Fixed GetCurrentBufferPos in the virtual player
15
16 2000-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
17 - ALL: Added version resource (if not already present)
18 Link with dllentry.obj (those dlls that don't need custom dll
19 entrypoints)
20 Clean up in process detach handler of win32 libmain
21 (except for a few core dlls (gdi32/user32/kernel32))
22 - DLLENTRY: Standard dll entrypoint
23
24 2000-02-04: Christoph Bratschi <cbratschi@datacomm.ch>
25 - COMCTL32: merged with WINE 20000130
26
27 2000-02-03: Jens Wiessner <wiessnej@rfi.de>
28 - NTDLL: Ported Wine security apis
29 - CRTDLL: Update
30
31 2000-02-03: Christoph Bratschi <cbratschi@datacomm.ch>
32 - USER32: merged controls with WINE 20000130
33
34 2000-02-03: Daniela Engert <dani@ngrt.de>
35 - GDI32: Implement RGB 555 to RGB 565 conversion in assembler
36
37 2000-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
38 - WININET: Ported Wininet code from Corel Wine tree
39 - INCLUDE\WINSOCK: MS Winsock compatible header
40 - GDI32: Prelimary RGB 555 to RGB 565 conversion in SetDIBitsToDevice
41 (will be rewritten in assembly for better performance)
42 (for RealPlayer videos in 16 bits mode)
43 BitBlt fix (return after dibsection blit -> fixes Quake 2)
44 Added MMX RGB conversion.
45 - USER32: Added export for OS2ToWin32Handle
46 - COMDLG32: Merged with latest Wine version (20000109)
47 - INCLUDE\WIN: Fixes to compile comdlg32 in C mode
48 (will be rewritten in assembly for better performance)
49 (for RealPlayer videos in 16 bits mode)
50 BitBlt fix (return after dibsection blit -> fixes Quake 2)
51
52 2000-02-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
53 - OPENGL: Ported SGI GLUT sources + Opengl update
54
55 2000-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
56 - GDI32: Cleaned up
57 Fixes for dib section apis. RealPlayer 7 can play videos
58 now (correct in 24 bps mode; upside down and wrong colors
59 in 16 bps mode)
60
61 2000-02-01: Knut Stange Osmundse <knut.stange.osmundsen>
62 - Pe2Lx: Makefile should be working again.
63 - KERNEL32: RegisterPe2LxDll - no detach is done for Pe2Lx/Win32k DLLs.
64 This is a temporary fix.
65
66 2000-02-01: Patrick Haller <phaller@gmx.net>
67 - SHELL32: Added PathSkipRootAW
68
69 2000-02-01: Jens Wiessner <wiessnej@rfi.de>
70 - NTDLL: Updated .def file (similar to NT 4 SP6) + bugfix for impdef
71
72 2000-01-31: Sander van Leeuwen <sandervl@xs4all.nl>
73 - USER32: GetDCEx with window handle 0 fails in Windows 98; now it also
74 returns an error in Odin.
75 GetWindowDC & GetDC use the desktop window handle if hwnd == 0
76 (before calling GetDCEx)
77 - GDI32: Set dibsection bitmap data to 0 when allocating it.
78
79 2000-01-30: Sander van Leeuwen <sandervl@xs4all.nl>
80 - PELDR: Fixed error messages for images without fixups (peldr.dll no
81 longer required)
82 - GDI32: Removed wrong bugfix for GetDIBits (breaks Lotus Notes)
83 - USER32: Don't check for window visibility when calling SetWindowPos
84 in SetMenu. (fixes menu in standard minesweeper)
85 (NOTE: May need to call SetWindowPos with SWP_FRAMECHANGED
86 when showing a window (see Wine code))
87 Put back GetMenuStringA fix (return length of string if string pointer
88 or size parameter == 0) (almost fixes Realplayer 7 menu)
89
90 2000-01-29: Sander van Leeuwen <sandervl@xs4all.nl>
91 - GDI32: Save and restore FPU control word when calling
92 Open32's DrawText. DrawText trashes it which causes drawing
93 problems in RealPlayer 7.
94 - USER32: Call DrawTextA in uitools.cpp, not Open32's DrawText.
95 Fix for SetWindowPos for showing hidden windows
96 (call ShowWindow) -> fixed non-visible button bar in mIRC
97 Don't set WS_VISIBLE on by default. Windows are made visible
98 during creation by calling ShowWindow.
99 Call UpdateWindow for client window, not the frame.
100 - INCLUDE\WIN\wingdi.h: Added GdiFlush declaration
101 - INCLUDE\makefiles: Added c/c++ definitions for win32 apps (without
102 -D__WINE__ so you don't need to specify whether you use the ascii
103 or unicode version of a win32 api)
104
105 2000-01-29: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
106 - KERNEL32: Added GlobalWire/GlobalUnwire
107
108 2000-01-28: Sander van Leeuwen <sandervl@xs4all.nl>
109 - GDI32: Wrong return values for GetDIBits & SetDIBitsToDevice
110 (nr of scan lines copied; not true/false)
111 - USER32: Don't call default frame handler for WM_ADJUSTWINDOWPOS
112 (fixes window resize when playing videos in RealPlayer v7 &
113 dragging titlebar in Professional Mine Sweeper)
114
115 2000-01-28: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
116 - Win32k: Heap is splitted into a swappable and a resident heap.
117 Fixups are now applied when a page is loaded from disk.
118 This is done by overloading the kernel function called
119 (_)ldrEnum32bitRelRecs. This should improve performance a lot!
120
121 2000-01-27: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
122 - OPENGL: First version of opengl implementation
123
124 2000-01-27: Sander van Leeuwen <sandervl@xs4all.nl>
125 - USER32: Fixed FS corruption in OSLibPostThreadMessage
126 Send WM_CHILDACTIVATE to child windows (not only
127 to MDI children) instead of WM_ACTIVATE
128 - SHELL32: Fixed FS corruption in DragAcceptFiles
129
130 2000-01-26: Yuri Dario <mc6530@mclink.it>
131 - INCLUDE\WIN: Additions & changes for compiling Opera.
132 - many dlls: create correct library (impdef)
133
134 2000-01-26: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
135 - GDI32: Changes for Opengl support
136
137 2000-01-26: Christoph Bratschi <cbratschi@datacomm.ch>
138 - USER32: fixed WM_MOVE, MsgFormatFrame and WM_WINDOWPOS* to use parent
139 coordinates
140 changed min frame size
141 - COMCTL32: fixed wrong progress frame
142
143 2000-01-26: Sander van Leeuwen <sandervl@xs4all.nl>
144 - OLEAUT32: Don't create logfile when logging is turned off
145 - PELDR: Don't modify cmd line in PIB structure
146 - INCLUDE: Removed string.h.
147 - KERNEL32: Added workaround for OS/2 DosSetMem bug in VirtualAlloc
148 (if memory is reserved, set read & write page flags)
149
150 2000-01-25: Sander van Leeuwen <sandervl@xs4all.nl>
151 - PELDR/KERNEL32: Allocate low memory at right address and with right size
152 in peldr.dll (fixes install of Windows Media Player)
153 - KERNEL32: Print thread id for each log message
154
155 2000-01-22: Michal Necasek <mike@mendelu.cz>
156 - DINPUT: Fixes + basic functionality is complete; enough for many games
157
158 2000-01-21: Sander van Leeuwen <sandervl@xs4all.nl>
159 - USER32: Put back old WM_MOVE, MsgFormatChanged & OSLibSWPToWINDOWPOSFrame
160 Previous changes broke many apps (VPBuddy, MIrc32)
161 Don't update window if style changes (responsibility of the app)
162 Store window menu & id in same variable (fixes clock ->
163 double click on analog window -> titlebar & menu gone; menu
164 used to stay there)
165 Put back WM_CALCVALIDRECT code in pmwindow. Fixes updates
166 of clock window (who's class has CS_H/VREDRAW style).
167 - KERNEL32: Fixed image loading for resource lookup only (don't care
168 where those images are loaded as we only use it to query
169 the version resource; so base address doesn't matter)
170 (-> RealPlayer 7 installs now)
171
172 2000-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
173 - KERNEL32: Disabled creation of pe_x.log if logging disabled
174 Only get codepage once from odin.ini.
175
176 2000-01-20: Vit Timchishin <tvv@sbs.kiev.ua>
177 - KERNEL32: Codepage bugfix & unicode translation changes (heapstring.cpp)
178 - GDI32: Added codepage support for CreateCompatibleDC
179
180 2000-01-20: Christoph Bratschi <cbratschi@datacomm.ch>
181 - USER32: fixed WM_CONTEXTMENU
182 dispatch WM_MOUSEMOVE in menu loop
183
184 2000-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
185 - USER32: Removed 'old' user32 and replaced it with the new one
186 Call default window proc when DefMDIChildProcA/W is called
187 for a non-MDI window.
188 Fixed menu check & submenu marks painting
189 - KERNEL32: Increased shared heap reserve size to 512 kb
190 - SHELL32: Display Odin logo in Shell about dialog box
191
192 2000-01-18: Jens Wiessner <wiessnej@rfi.de>
193 - WINMM\WAVEMAP
194 Updated to Wine level 20000109 + corrected compile
195 - MCICDA: ported MCICDA.DLL from Wine 20000901 (Linux cdrom calls stubbed
196 so it doesn't work)
197
198 2000-01-17: Sander van Leeuwen <sandervl@xs4all.nl>
199 - USER32\NEW: Added basic support for DInput WM_CHAR notification
200 (the rest needs to be done in dinput.dll)
201 Use KEYBOARD_Enable user32 export to (un)register WM_CHAR
202 handler. (WNDPROC type) It's called when a WM_CHAR message
203 arrives for an Odin window with hwnd, msg, wParam & lParam.
204 - DINPUT: Fixed bugs reported by Michal Necasek
205
206 2000-01-16: Christoph Bratschi <cbratschi@datacomm.ch>
207 - USER32/NEW: implemented sysmenu commands: SC_SIZE and SC_TASKLIST
208 fixed WM_MOVE
209 changed HTCAPTION system menu position
210 changed maximized window position
211 don't move/size maximized windows
212
213 2000-01-15: Jens Wiessner <wiessnej@rfi.de>
214 - TWAIN_32: Update
215 - WINMM\MCIANIM,MCIAVI32,MCISEQ,MCIWAVE,MIDIMAP
216 Updated to Wine level 20000109 + corrected compile errors
217 - WINMM: Ported Wine wave mapper.
218
219 2000-01-15: Sander van Leeuwen <sandervl@xs4all.nl>
220 - USER32\NEW: Fixed scroll repaints (never use GetMessage with window
221 handle as that can prevent WM_PAINTs from being dispatched)
222 (may need reworking of Get/PeekMessage instead)
223 ScrollWindow changes
224 Removed frame drawing 'bugfix'.
225 Fixed system menu position for child windows (i.e. MDI)
226 Fixed titlebar tracking for child windows (i.e. MDI)
227 - KERNEL32: Check for null pointers in lstrcmpA
228
229 2000-01-15: Christoph Bratschi <cbratschi@datacomm.ch>
230 - USER32/NEW: cache menu and caption drawing
231 changed minimize button position
232 don't redraw system menu icon in menu.cpp
233 hilighted menubar items don't have an edge in Win9x
234 don't open system menu on mouseover if menubar is used and vice versa
235 show sysmenu on WM_NCRBUTTONUP with HTCAPTION set (todo: position)
236 use WIN32_STDCLASS2 for windows with CS_SAVEBITS class style
237
238 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
239 - USER32/NEW: added caption clipping for faster window text updates
240
241 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
242 - USER32\NEW: Fixed min/max bug for mdi child windows
243 Fixed DrawMenuBar (invalidate frame rectangle in
244 FrameUpdateClient if client rectangle wasn't changed)
245 Fixed bugs in MsgFormatFrame & SendNCCalcSize
246 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
247 (Winamp works now)
248 Removed code that's no longer used (subclassed OS/2 frame
249 controls & OS/2 scrollbar functions etc)
250
251 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
252 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
253 is activated or deactivated
254 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
255 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
256 Return window desktop handle for window handle returned by
257 SetActiveWindow if window is non-Odin.
258 Fixed activation of windows. (send WM_ACTIVATE when receiving
259 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
260 Fixed DrawFrame; bottom & right frame borders now drawn correctly
261 Fixed scrollbar positioning (style.exe)
262 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
263 DC to save/restore a window's own dc.
264 Fixed client rectangle problems. Client rectangles
265 are always in frame coordinates; window rectangles in
266 screen coordinates. Whenever necessary (i.e WM_MOVE)
267 client coordinates are converted to coordinates relative
268 to it's parent client window.
269 Changed WM_MOVE -> client coordinates relative to parent origin
270 if child; otherwise relative to screen origin. (needs testing)
271 (WM_NCCALCSIZE needs to be done as well)
272 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
273 - KERNEL32: Added DisableLogging & EnableLogging functions to
274 disable logging in parts of code. Logging will only be
275 done if the logcount is bigger than 0.
276
277 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
278 - USER32/NEW: fixed WM_CALCVALIDRECTS
279 activated WM_NCPAINT clipping
280 added improved frame redraw mechanism
281
282 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
283 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
284 handler anymore) -> fixes problems with Shell About dialog
285 and jumping controls when resizing (Winhlp32)
286 Fixed menu tracking for different submenus
287 Fixed delayed repaints of invalidated menu rectangles
288 Ported Wine messagebox code. (for GUI consistency)
289 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
290 in notepad)
291 Fixed 'frame' control updates (resizing client window in
292 SetWindowPos for SWP_FRAMECHANGED)
293
294 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
295 - TWAIN_32: Bugfix (removed test code)
296
297 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
298 - USER32/NEW: fixed AdjustWindowRectEx
299
300 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
301 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
302 Removed hardcoded dependancy on shell32; load it on-demand
303 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
304 Fixed wrong return value for OSLibWinGetMsg
305 Workaround for bug in GDI32 FillRect (menu items painted
306 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
307 Applied patch to Wine menu code for RealPlayer
308 Fixed default return value of DefWndProc (0)
309 Fixed SetMenu (menus should be set when a window is no child)
310 Call correct SetMenu function from MsgCreate Win32BaseWindow method
311 Use WIN32_INNERFRAME frame class for top level windows again.
312 (VPBuddy repaint problems were solved by using this class)
313
314 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
315 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
316 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
317 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
318 there's no audio device
319 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
320 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
321 or button down/up message translation.
322 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
323 Added WM_NCACTIVATE message generation
324 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
325 Changed GetSystemMenu; added method to Win32BaseWindow class
326 (destroy old menu if present and switch back to default system
327 menu if bRevert = TRUE; needs changes in non-client code)
328
329 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
330 - USER32/NEW: activated menu code
331
332 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
333 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
334 (borders are not drawn correctly)
335 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
336 client/window rectangle when size nor position have changed)
337 Fixed out of sync rectWindow. (children don't get notified of
338 parent position change -> rectWindow (in screen coord.) not updated)
339 Fixed LoadBitmap for system bitmaps
340 Fixes for win32 titlebar + added win32 system menu
341 System menu commands now work
342 Fixed repaint problem for win32 titlebar
343 Added Christoph's gradient filled title bars code
344 For (experimental) win32-like windows add this to odin.ini:
345 [CUSTOMIZATION]
346 OS2Look=0
347
348 [COLORS]
349 UseWinColors=1
350
351 2000-01-09: David Raison <djr@lemur.co.uk>
352 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
353
354 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
355 - USER32/NEW: implemented scrollbar nc handling
356 windows without menus work now fine
357 implemented gradient filled title bars
358
359 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
360 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
361 OSLibGetMsg bugfix + WM_QUIT translation fix
362 OSLibGetMenuItemRect fix (y coordinate conversion)
363 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
364 or button down/up message translation.
365 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
366 Added Wine-like license that supercedes the main Odin license
367 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
368 CRTDLL__CIatan etc etc)
369
370 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
371 - CRTDLL: Compile fix
372
373 2000-01-08: Patrick Haller <phaller@gmx.net>
374 - SHELL32: Update: to WINE level 2000/01/08
375 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
376
377 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
378 - GDI32: added PatBlt support for negative width/height
379
380 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
381 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
382 Faked RegisterServiceCtrlHandlerA/W (TODO)
383 Partly implemented SetServiceBits/SetServiceStatus
384 Improved QueryServiceStatus
385 Call RtlCreateAcl in InitializeAcl
386 - LZ32: Create correct library
387 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
388 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
389 (991212) (-> fixes errors in RealPlayer)
390 - USER32: GetMenuStringA fix (return length of string if string pointer
391 or size parameter == 0)
392
393 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
394 - TWAIN_32: Update
395
396 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
397 - USER32/NEW: single window works now
398
399 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
400 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
401 (should be changed)
402 MS Office 2000 install (first part) almost working.
403 (installs windows installer as system service)
404 - OLEAUT32: Typelib bugfix for MS Office 2k install
405 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
406
407 2000-01-05: David Raison <djr@lemur.co.uk>
408 - OLEAUT32: LHashValOfNameSys(A)
409
410 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
411 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
412
413 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
414 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
415 Delete old region in SetWindowRegion
416
417 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
418 - KERNEL32: Named pipe updates & bugfixes
419
420 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
421 - LZ32/TAPI32: Updated def files to match NT 4 SP6
422 - MSVCRT: Updated def files + MSVCRT40 version info
423 - WINMM: Added Wine's MCI dlls (not compiled as this requires
424 a working MCI subsystem in winmm and a redesign of
425 wave & midi)
426
427 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
428 - LZ32: Cleaned up .def file (don't import directly) & removed
429 debugtools.h
430 - USER32: Fixed PostThreadMessage + bugs in GetMessage
431 - KERNEL32: Set hmq & hab THDB values for newly created
432 threads (hmq not correct now)
433
434 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
435 - KERNEL32: Started implementing named pipe apis
436
437 2000-01-02: David Raison <djr@lemur.co.uk>
438 - OLEAUT32: Typelib fixes - Custom Data & Default values.
439 Added private logging to tlib_n.log when reading a TLIB.
440 (Should clarify what is being read & why)
441 Now supports embedded named TLIBS in the format
442 <path>\<libname>\<id> (required for VB6, etc.)
443 Preparatory work to reduce dependance on
444 current file position to enable delaying parsing
445 data until it is requested by user.
446
447 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
448 - USER32: Implemented Set/GetWindowRgn (not activated)
449 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
450 vfprintf during logging.
451 Cleaned up file io procedures in oslibdos.cpp
452
453 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
454 - USER32: Workaround for crash in Lotus Notes when switching to a new
455 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
456 has been called for a window -> don't dispatch this msg)
457
Note: See TracBrowser for help on using the repository browser.