source: trunk/changelog@ 4448

Last change on this file since 4448 was 4448, checked in by hugh, 25 years ago

gdi32 dibsection blit fixes

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