source: trunk/changelog@ 4465

Last change on this file since 4465 was 4465, checked in by sandervl, 25 years ago

* empty log message *

File size: 8.5 KB
Line 
1 /* $Id: changelog,v 1.1184 2000-10-09 17:30:33 sandervl Exp $ */
2
3 2000-10-09: Yuri Dario <mc6530@mclink.it>
4 - USER32: Corrected background brush for MDI windows
5
6 2000-10-09: Patrick Haller <phaller@gmx.net>
7 - KERNEL32: Fixed console bug (left offset) reported by Michal
8
9 2000-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
10 - USER32: FrameTrackFrame fix for child windows
11 Ported Wine's ShowOwnedPopups (not tested)
12
13 2000-10-08: Sander van Leeuwen <sandervl@xs4all.nl>
14 - USER32: GetMinMaxInfo fix for windows with both WS_THICKFRAME and
15 WS_BORDER style (differs from Wine; see comment in win32basepos.cpp
16 Win32BaseWindow::GetMinMaxInfo)
17 Fix for CS_OWNDC windows (origin of client window needs to be changed
18 after window size/position changes)
19 Fix for ShowScrollBar (enabling/disabling both scrollbars at once did not work (vert))
20 AdjustWindowRectEx fix:
21 Scrollbars aren't checked *UNLESS* the style includes a border (any border)
22 --> VERIFIED IN NT4, SP6 (fixes MFC apps with scrollbars + bar controls)
23 - KERNEL32: Do not export the toolhelp apis; NT4 doesn't do that. (only win9x)
24
25 2000-10-07: Markus Montkowski <mmontkowski@gmx.de>
26 - GDI32: Fixed bitblt, it used the size of the source DC
27 when no destwindow was found. this doesn't work
28 for bitblt between dibsections if the dest is larger.
29 so now it checks if the dest DC belongs to a dibsection
30 and uses sets hdcHeight/Width to the size of the dibsection.
31 Added GetWidth() member function for this.
32 Fixes: Civilisation Test of Times
33
34 2000-10-06: Sander van Leeuwen <sandervl@xs4all.nl>
35 - KERNEL32: PE loader: no longer rely on section names, but on image
36 directories instead
37 Init console earlier. (before exe is loaded; some dlls want
38 to send output to the console while they're being loaded)
39 EnumResourceNamesW/EnumResourceTypesW fixes (strings not terminated)
40 CreateProcessA/W fix for setting current directory of new process;
41 Open32 ignores lpCurrentDirectory parameter
42 - PELDR: Special parameter for setting current directory added (/OPT[CURDIR=x])
43 - USER32: Ignore class background brush in DefDlgProc for WM_ERASEBKGND
44 (always use GetSysColorBrush(COLOR_BTNFACE))
45 (Wine does this and it fixes the 1st dialog of the Netscape 6 install)
46 OemToCharBuffA fix; put back special characters that got translated
47 to 0xff (fixes Netscape 6 install license edit control)
48
49 2000-10-05: Michal Necasek <mike@mendelu.cz>
50 - KERNEL32: FormatMessageA/W fix; message ids can be larger than 65535
51 (VACPPWIN)
52
53 2000-10-05: Sander van Leeuwen <sandervl@xs4all.nl>
54 - KERNEL32: Don't print FS warnings for OS/2 Odin applications
55 EnumResourceNamesA fix (zero terminate resource name)
56 - USER32: GetWindow GW_CHILD & GW_HWNDFIRST fixes
57 EnumDisplaySettingsA; always set refresh rate to 70hz
58 Z-order bugs fixed; GetWindow returns windows in correct order now
59 hack for groupbox (clipsiblings) no longer necessary. Same
60 goes for adding WS_CLIPSIBLINGS style for dialog controls.
61 Re-enabled usage of invalid region instead of invalid rectangle
62 in BeginPaint -> lots of paint problems gone (i.e. winzip)
63
64 2000-10-05: Michal Necasek <mike@mendelu.cz>
65 - KERNEL32: Fixes for exception handling (as done by MSVCRT)
66
67 2000-10-05: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
68 - tools\common: Implemented read and write buffering for class kFile
69 to speed up kDef2Wat and ImpDef.
70
71 2000-10-04: Sander van Leeuwen <sandervl@xs4all.nl>
72 - KERNEL32: Added forwarder support for PE loader (required for msvcrt40.dll)
73
74 2000-10-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
75 - tools\ImpDef: Corrected wrong DESCRIPTION statement.
76 Corrected exception when processing src\icmp\icmp.def.
77
78 2000-10-03: Sander van Leeuwen <sandervl@xs4all.nl>
79 - Include\uniconv.h
80 FS wrappers for Unicode api
81 - Include\heapstring.h:
82 strcasecmp & strncasecmp are case insensitive (fixes
83 profile apis (and probably some other things too))
84 - KERNEL32: Calculate cpu speed and set HARDWARE\DESCRIPTION\System\CentralProcessor\x\~Mhz key
85 Added GetFileType method to conin/out which return FILE_TYPE_CHAR
86 Create new keys during installation:
87 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdfs]
88 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom]
89 Fix for failure during DLL_PROCESS_ATTACH for LX system
90 dlls (pe loader). Didn't fail properly before.
91 Check if executable exists in CreateProcessA; fixes VMWare
92 installation
93 InitCommandLine fix (forgot to copy cmd line)
94 - USER32: Fix for EDIT_WM_Char (couldn't type in numbers anymore)
95 EnumDisplaySettingsA accepts negative indices
96 - ADVAPI32: Cleanup
97
98 2000-10-03: Michal Necasek <mike@mendelu.cz>
99 - KERNEL32: Fix for HMGetFileType. Must return FILE_TYPE_CHAR for standard
100 handles (in/out/error)
101
102 2000-10-03: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
103 - Watcom makefiles:
104 ú Wrote a converter tool to make wlink input from .def files.
105 tools/common - kDef2Wat.exe (Need VA C to compiler currently)
106 ú Found a problem with Watcom when trying to link
107 advapi32.dll; It mangles the __stdcall function when
108 they aren't prototyped/delcared extern "C". Haven't found
109 any solution to this, other than prototyping the
110 APIs within extern "C" { }.
111
112 2000-10-02: Sander van Leeuwen <sandervl@xs4all.nl>
113 - SHLWAPI: Rewrote VERSION_OsIsUnicode (same as SHELL_OsIsUnicode now)
114 - RICHED32: 'Handle' WM_SETTEXT messages. Wine's richedit dll is very
115 incomplete. It's better to use the native windows version.
116 - KERNEL32: Ported Wine's LoadModule (previously used Open32)
117 Changed version apis
118 You can now tell Odin to pretend to be Windows 98 or
119 Windows NT 4.0 (default = NT40)
120 Odin.ini:
121 [WinVersion]
122 Version=Win98
123 - OLE32: Added stubs for CoGetInstanceFromFile & CoGetInstanceFromIStorage
124 - KERNEL32, WSOCK32, WINMM, include\odinwrap.h, SHLWAPI, WNASPI32
125 Changes/fixes for new ODINFUNCTION macros
126
127 2000-10-02: Patrick Haller <phaller@gmx.net>
128 - *: major change in ODINWRAP macros
129 and (all) affected sources
130 - GDI32: fixed possible error in text.cpp (strrchr)
131 - WNETAP32: started implementation of LAN Manager support :)
132 NetApiBuffer*
133 NetStatisticsGet
134 NetWkstaGetInfo
135 - KERNEL32: added HEAP_size export
136
137 2000-10-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
138 - KERNEL32: Fixed Pe2Lx (ie. Win32k) TLS problem. Beyond Compare works.
139 - Common: Added very limited dump capability to kFilePE. (Used to
140 understand TLS.)
141 - Win32k Added symbols for kernel 14050 (Warp4) and
142 14054 (Warp4, WS4eB SMP and UNI).
143
144 2000-10-01: Patrick Haller <phaller@gmx.net>
145 - KERNEL32: Optimization of PROFILE calls
146 - GDI32: Fix for uncompressed/RGB bitmaps (biSizeImage == 0)
147 - WINMM: Fix for timer logic - timers still quite untested
148
149 2000-10-01: Sander van Leeuwen <sandervl@xs4all.nl>
150 - KERNEL32: Fixed bug introduced by recent command line changes
151 (executables with spaces in name/dir)
152 - GDI32: Implemented AddFontResourceW
153
154 2000-10-01: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
155 - Win32k: ú Added IOCtl API for Reading or Writing into another process'
156 address space. (*ProcessReadWrite)
157 This is intended used to implemented ReadProcessMemory and
158 WriteProcessMemory (which is essensial to debuggers I think).
159 I'll implementet them soon, but it sees that it'll
160 require more changes in process.c that I first thought.
161 ú Simplified maintaince of kernel imports. (mkcalltab)
162 Removed unused imports.
163
Note: See TracBrowser for help on using the repository browser.