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