source: trunk/changelog@ 4221

Last change on this file since 4221 was 4221, checked in by bird, 25 years ago

* empty log message *

File size: 7.2 KB
Line 
1 /* $Id: changelog,v 1.1115 2000-09-08 15:28:24 bird Exp $ */
2
3 2000-09-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
4 - Win32k: Added last FP14 kernel to Symbol database.
5 Splitted extract.c from Probkrnl.c. Removed old debug
6 code from Probkrnl.c (Probkrnl.exe) - use win32ktst.exe
7 for Ring-3 testing now.
8 Added filehandle fix for MSC60a compiler.
9
10 2000-09-07: Patrick Haller <phaller@gmx.net>
11 - KERNEL32: Fixed some FS: bugs in time.cpp, environ.cpp, heap.cpp
12 Fixed language support from WINE sync
13 - GDI32: Fixed some FS: bug in DeleteObject(), DeleteDC()
14
15 2000-09-07: Sander van Leeuwen <sandervl@xs4all.nl>
16 - COMCTL32: TOOLBAR_SetBitmapSize & TOOLBAR_SetBitmapSize; do not return
17 FALSE when called after buttons have been created.
18 (failed assertions in MFC applications; this code is from
19 the latest Wine source tree)
20 - SHELL32: Merged more changes made by Christoph into new tree
21 - KERNEL32: InitDirectories must be called before InitializeTIB or else
22 a win.ini file is created in the root dir (InitializeTIB
23 loads ntdll which depends on user32)
24 (reported by Kai Sommerfeld)
25 - USER32: GetWindow was completely wrong. Didn't take Z-order into account.
26 Fixes MFC applications (missing controls + redraw problems)
27
28 2000-09-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
29 - install: Added Win32kCC.exe and kRx.EXE to the .wpi distributions.
30
31 2000-09-05: Sander van Leeuwen <sandervl@xs4all.nl>
32 - USER32: WM_PARENTNOTIFY during WM_CREATE was sent to the wrong window
33 WM_FOCUSCHANGE fix; set & kill focus was sent twice
34 Added more logging.
35 Activate window after resizing (WM_WINDOWPOSCHANGED in pmwindow.cpp)
36 - KERNEL32: Workaround for RegSetValueA; a call to this api in Netscape
37 fails with error 8 due to a 0 size of the key data
38 HMOpenFile fix; pHMHandleData->dwCreation must be set
39 to OPEN_EXISTING or else the memory map class will fail
40 to duplicate the handle.
41
42 2000-09-04: Sander van Leeuwen <sandervl@xs4all.nl>
43 - KERNEL32: GetDiskFreeSpaceExA: added support for 64 bits disk size
44 Rewrote GetDiskFreeSpace (no longer uses Open32)
45 - USER32: SetWindowLong GWL_WNDPROC changes/fixes
46 Type of SetWindowLong determines new window proc type
47 UNLESS the new window proc has already been registered
48 (use the old type in that case) (VERIFIED in NT 4, SP6)
49 Return original window procedure if types match (SetWindowLongX & proc type)
50 otherwise window proc wrapper.
51 Fixes wrong strings in Notes 5.0. (new string problems, but they
52 are caused by something else)
53 - COMCTL32: CreateUpDownControl was not exported correctly
54 (reported by Reinhold Kopper)
55
56 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
57 - Win32k: Improved error reporting.
58 Corrected fatal bug in the QueryOptionsStatus IOCtl,
59 had forgotten three SSToDS()...
60
61 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
62 - doc/readme.txt: Updated Win32k sections.
63 - Win32k: Fixed missing object in the 16-bit clib.lib which caused
64 linking of win32k.sys to fail in last daily build.
65 Support for comport 3 and 4.
66 - Win32kCC: Updated dialog to show all information provided by the
67 Win32k IOCtl interface.
68 - Include/HandleManager.h:
69 Added prototype for HMDeviceIoControl which Sander forgot.
70
71 2000-09-03: Patrick Haller <phaller@gmx.net>
72 - KERNEL32: NLS sync with WINE
73
74 2000-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
75 - KERNEL32: More logging;
76 DeviceIoControl didn't have handlemanager wrapper
77 - GDI32: Missing wrapper for WinDrawTabbedText caused FS corruption.
78 PLEASE be more careful in the future!
79
80 2000-09-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
81 - Win32k: Finally. I've merged the new changes into the main branch.
82 The most important things are:
83 - More correct search order for DLLs. The differences are
84 now that _ALL_ DLLs are found using the Windows search
85 order, and that the LIBPATH are also searched (last).
86 - PE.EXE may be invoked by Win32k.sys.
87 Win32k.sys will now operate in three modes:
88 - Pe2Lx mode. Only the Pe2Lx method is used.
89 - Mixed Pe2Lx and Pe.exe mode. Pe.exe is invoked for
90 executables which Pe2Lx don't currently support.
91 (like WinWord, which BTW may trap you PC if invoked
92 in Pe2Lx mode.)
93 This is the default mode.
94 - Pe.exe mode. Pe.exe is allways used.
95 (see readme.txt, I'll update it to ASAP but not to night.
96 (I tired after working 36 hours on finishing this...)
97 - UNIX Shell Scripts are working (now).
98 - JAVA invokation. If you try to load a JAVA class the
99 it is executed using java.exe. (note that the class
100 name is case sensitive!)
101 - Pure REXX. This one is for Nenad. .RX and .REX are
102 loaded using a tiny REXX starter, kRX.exe (found in
103 System32 directory).
104 - Win32k Control Center, Win32kCC.EXE. Simple PM
105 program which allows you to change the Win32k.SYS
106 options while running. It does also show some status
107 information (will be extended).
108 - Support for FP14 in the Symbol database.
109 (use the 09th Aug. kernel please).
110
111 - KERNEL32: Speeded up loading by using Win32k.sys IOCtl to get
112 objecttable entries (OTE) for the Pe2Lx executable images,
113 instead of using DosQuerySysState (which gets OTEs for all
114 modules in the entrie system). (This is the reason for the
115 win32k.lib file - it's made by the 'libs' rule from src.)
116
117 2000-09-02: Sander van Leeuwen <sandervl@xs4all.nl>
118 - USER32: Rewrote IsZoomed
119 Removed winzip invisible button fix; causes many repaint
120 problems. Need to find the real cause.
121 - DDRAW: More debug logging; implemented ClipGetClipList
122 - WINMM: mixerGetID fix (for NULL hmixer)
123
124 2000-09-01: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
125 - INCLUDE: Shut up the OS/2 resource compiler (added -n to OS2RCFLAGS).
126 Added linkage macro for the OS2RC which exepacks the resource
127 object: OS2RCLFLAGS
128
129 2000-09-01: Patrick Haller <phaller@gmx.net>
130 - GDI32: - Open32 fix for CreateDIBitmap: some apps claim they have
131 a bitmap w/o palette color table and then send one in to copy.
132 - USER32: - PMWINDOW.CPP: WM_FOCUSCHANCE - validate GetTopParent() handle
133
Note: See TracBrowser for help on using the repository browser.