Changeset 1992
- Timestamp:
 - Dec 6, 1999, 7:11:43 PM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/changelog (modified) (6 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/changelog
r1990 r1992 1 /* $Id: changelog,v 1.513 1999-12-06 16:42:24 achimha Exp $ */ 1 /* $Id: changelog,v 1.514 1999-12-06 18:11:43 dengert Exp $ */ 2 3 99-12-06: Daniela Engert <dani@ngrt.de> 4 - ODINCRT: change debug *allocs to return zeroed memory (instead of 5 filled with 0xAA). Some applications expect it this way. 2 6 3 7 99-12-06: Patrick Haller <phaller@gmx.net> 4 - KERNEL32: Reimplemented InterlockedXXX-APIs to 5 be NT4 compatible8 - KERNEL32: Reimplemented InterlockedXXX-APIs to 9 be NT4 compatible 6 10 7 11 99-12-05: Christoph Bratschi <cbratschi@datacomm.ch> … … 15 19 - GDI32: Changed DEFAULT_GUI_FONT to WarpSans.9 16 20 - USER32:InSendMessage,GetMessagePos,GetMessageTime & ReplyMessage 17 implemented using PM apis.18 Update client rectangle in WM_WINDOWPOSCHANGED handler in19 pmwindow.cpp. (client can change without affecting the20 frame window's size/position; previously we never sent an update)21 -> fixes wrong button position in RealPlayer22 Changed FCF_TITLEBAR selection. Removes some, but not all, unwanted23 windows from the tasklist.21 implemented using PM apis. 22 Update client rectangle in WM_WINDOWPOSCHANGED handler in 23 pmwindow.cpp. (client can change without affecting the 24 frame window's size/position; previously we never sent an update) 25 -> fixes wrong button position in RealPlayer 26 Changed FCF_TITLEBAR selection. Removes some, but not all, unwanted 27 windows from the tasklist. 24 28 - INCLUDE\heapstring.h: Changed definition of lstrcpy(n)AtoW/WtoA 25 - KERNEL32: CHanged lstrcpy(n)AtoW/WtoA26 Fixed bug in InterlockedExchange (ret 4 should be ret 8)27 -> fixes crashes in Mozilla viewer & WinAmp (2.5e)29 - KERNEL32: CHanged lstrcpy(n)AtoW/WtoA 30 Fixed bug in InterlockedExchange (ret 4 should be ret 8) 31 -> fixes crashes in Mozilla viewer & WinAmp (2.5e) 28 32 - LZ32: Removed prototype of lstrcpyAtoW 29 33 30 34 99-12-04 Achim Hasenmueller <achimha@innotek.de> 31 - WSOCK32\NEW: Fixed bugs with incorrect relay window invocation32 Improved debugging messages, better error handling33 Works very well now, VP Buddy does not crash anymore34 Please test well, then it can be promoted35 - WSOCK32\NEW: Fixed bugs with incorrect relay window invocation 36 Improved debugging messages, better error handling 37 Works very well now, VP Buddy does not crash anymore 38 Please test well, then it can be promoted 35 39 36 40 99-12-04 Markus Montkowski <mmontkowski@gmx.de> 37 - GDI32: Implemented DEFAULT_GUI_FONT for GetStockObject38 DIBSecttion now get the DC Palette on creation and 41 - GDI32: Implemented DEFAULT_GUI_FONT for GetStockObject 42 DIBSecttion now get the DC Palette on creation and 39 43 updated if DC Pal changes. 40 44 41 45 99-12-03: Sander van Leeuwen <sandervl@xs4all.nl> 42 46 - USER32: Experimental WM_ERASEBACKGND change 43 Ignore PM WM_ERASEBACKGROUND (return 1), always44 send one in BeginPaint and call BeginPaint/EndPaint45 in the default window handler for WM_(ICON)PAINT47 Ignore PM WM_ERASEBACKGROUND (return 1), always 48 send one in BeginPaint and call BeginPaint/EndPaint 49 in the default window handler for WM_(ICON)PAINT 46 50 47 51 99-12-03: Christoph Bratschi <cbratschi@datacomm.ch> … … 56 60 - OLE32: Corrected CoSetState Stub. 57 61 - OLEAUT32: Changed return value (CreateDispTypeInfo) from S_OK to 58 E_OUTOFMEMORY62 E_OUTOFMEMORY 59 63 - NTDLL: Changed dprintfs for strcpy/strcat 60 64 61 65 99-12-02: Patrick Haller <phaller@gmx.net> 62 - WSOCK32\NEW: Improvements.66 - WSOCK32\NEW: Improvements. 63 67 - INCLUDE: Some macro fixes in misc.h and odinwrap.h 64 68 65 69 99-12-02: Sander van Leeuwen <sandervl@xs4all.nl> 66 70 - USER32: Rewrote EnumThreadWindows/EnumWindows 67 Fixed GetParent71 Fixed GetParent 68 72 69 73 99-12-02 Markus Montkowski <mmontkowski@gmx.de> 70 - GDI32: Implemented:71 CombineTransform, CreateDIBPatternBrush, CreateDCW, 72 CreateEnhMetaFileW, CreateICW73 Fixed memory leak in GetTextFaceW (didn't free ASCII buffer)74 Enhanced StretchBlt to support DIBSections74 - GDI32: Implemented: 75 CombineTransform, CreateDIBPatternBrush, CreateDCW, 76 CreateEnhMetaFileW, CreateICW 77 Fixed memory leak in GetTextFaceW (didn't free ASCII buffer) 78 Enhanced StretchBlt to support DIBSections 75 79 76 80 99-12-02: Achim Hasenmueller <achimha@innotek.de> 77 - WSOCK32\NEW: Not really working :(78 Fixed WSAAsyncGetHostByName, added request data to table81 - WSOCK32\NEW: Not really working :( 82 Fixed WSAAsyncGetHostByName, added request data to table 79 83 80 84 99-12-01: Patrick Haller <phaller@gmx.net> … … 88 92 99-12-01: Sander van Leeuwen <sandervl@xs4all.nl> 89 93 - ODINCRT: Wrappers for allocation/free functions to prevent them 90 from trashing FS. (happens when called from a thread (91 that is not the main thread))92 Also wrappers for new/delete calls. (for the same reason)94 from trashing FS. (happens when called from a thread ( 95 that is not the main thread)) 96 Also wrappers for new/delete calls. (for the same reason) 93 97 - KERNEL32: Increase max nr of open files when DosOpen fails with ERROR_TOO_MANY_OPEN_FILES 94 (OSLibDosOpen)95 Don't translate strings if api fails (FindFirstFileW/FindNextFileW)96 GetProcessTimes (TODO: Doesn't use RtlExtendedIntegerMultiply correctly!)98 (OSLibDosOpen) 99 Don't translate strings if api fails (FindFirstFileW/FindNextFileW) 100 GetProcessTimes (TODO: Doesn't use RtlExtendedIntegerMultiply correctly!) 97 101 - ADVAPI32: Fix for RegQueryInfoKeyW (return size = 0) 98 102 - GDI32: Ported GetTextCharset & GetTextCharsetInfo (Wine: 991031) 99 Ported Set/GetSystemPaletteUse103 Ported Set/GetSystemPaletteUse 100 104 101 105 99-11-30: Patrick Haller <phaller@gmx.net> … … 106 110 99-11-30: Sander van Leeuwen <sandervl@xs4all.nl> 107 111 - KERNEL32: Ported Wine process apis (not done) (kernel32\process.cpp) 108 Unitialized data section bugfix. 112 Unitialized data section bugfix. 109 113 - NTDLL: Fixed exports (missing ordinals) and created correct library 110 114 - ADVAPI32: Call security apis in ntdll (security.cpp; Wine 991031) … … 112 116 99-11-30: Jens Wiessner <wiessnej@rfi.de> 113 117 - CRTDLL: Completed GetMainArgs 114 Implemented several functions.115 - MSVCRT: Made some changes and implemented new functions.116 Now builds msvcrt, msvcrt20 & msvcrt40 dlls.118 Implemented several functions. 119 - MSVCRT: Made some changes and implemented new functions. 120 Now builds msvcrt, msvcrt20 & msvcrt40 dlls. 117 121 118 122 99-11-30: Vitali E. Pelenyov <Vitali.Pelenyov@dpt.ustu.ru>  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  