source: trunk/changelog@ 2665

Last change on this file since 2665 was 2665, checked in by cbratschi, 26 years ago

* empty log message *

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