source: trunk/changelog@ 4456

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

* empty log message *

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