1 | /* $Id: changelog,v 1.1100 2000-09-03 09:36:47 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2000-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - KERNEL32: More logging;
|
---|
5 | DeviceIoControl didn't have handlemanager wrapper
|
---|
6 | - GDI32: Missing wrapper for WinDrawTabbedText caused FS corruption.
|
---|
7 | PLEASE be more careful in the future!
|
---|
8 |
|
---|
9 | 2000-09-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
10 | - Win32k: Finally. I've merged the new changes into the main branch.
|
---|
11 | The most important things are:
|
---|
12 | - More correct search order for DLLs. The differences are
|
---|
13 | now that _ALL_ DLLs are found using the Windows search
|
---|
14 | order, and that the LIBPATH are also searched (last).
|
---|
15 | - PE.EXE may be invoked by Win32k.sys.
|
---|
16 | Win32k.sys will now operate in three modes:
|
---|
17 | - Pure Pe2Lx mode. Only the Pe2Lx method is used.
|
---|
18 | - Mixed Pe2Lx and Pe.exe mode. Pe.exe is invoked for
|
---|
19 | executables which Pe2Lx don't currently support.
|
---|
20 | (like WinWord, which BTW may trap you PC if invoked
|
---|
21 | in Pure mode.)
|
---|
22 | This is the default mode.
|
---|
23 | - Pe.exe mode. Pe.exe is allways used.
|
---|
24 | (see readme.txt, I'll update it to ASAP but not to night.
|
---|
25 | (I tired after working 36 hours on finishing this...)
|
---|
26 | - UNIX Shell Scripts are working (now).
|
---|
27 | - JAVA invokation. If you try to load a JAVA class the
|
---|
28 | it is executed using java.exe. (note that the class
|
---|
29 | name is case sensitive!)
|
---|
30 | - Pure REXX. This one is for Nenad. .RX and .REX are
|
---|
31 | loaded using a tiny REXX starter, kRX.exe (found in
|
---|
32 | System32 directory).
|
---|
33 | - Win32k Control Center, Win32kCC.EXE. Simple PM
|
---|
34 | program which allows you to change the Win32k.SYS
|
---|
35 | options while running. It does also show some status
|
---|
36 | information (will be extended).
|
---|
37 | - Support for FP14 in the Symbol database.
|
---|
38 | (use the 09th Aug. kernel please).
|
---|
39 |
|
---|
40 | - KERNEL32: Speeded up loading by using Win32k.sys IOCtl to get
|
---|
41 | objecttable entries (OTE) for the Pe2Lx executable images,
|
---|
42 | instead of using DosQuerySysState (which gets OTEs for all
|
---|
43 | modules in the entrie system). (This is the reason for the
|
---|
44 | win32k.lib file - it's made by the 'libs' rule from src.)
|
---|
45 |
|
---|
46 | 2000-09-02: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
47 | - USER32: Rewrote IsZoomed
|
---|
48 | Removed winzip invisible button fix; causes many repaint
|
---|
49 | problems. Need to find the real cause.
|
---|
50 | - DDRAW: More debug logging; implemented ClipGetClipList
|
---|
51 | - WINMM: mixerGetID fix (for NULL hmixer)
|
---|
52 |
|
---|
53 | 2000-09-01: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
54 | - INCLUDE: Shut up the OS/2 resource compiler (added -n to OS2RCFLAGS).
|
---|
55 | Added linkage macro for the OS2RC which exepacks the resource
|
---|
56 | object: OS2RCLFLAGS
|
---|
57 |
|
---|
58 | 2000-09-01: Patrick Haller <phaller@gmx.net>
|
---|
59 | - GDI32: - Open32 fix for CreateDIBitmap: some apps claim they have
|
---|
60 | a bitmap w/o palette color table and then send one in to copy.
|
---|
61 | - USER32: - PMWINDOW.CPP: WM_FOCUSCHANCE - validate GetTopParent() handle
|
---|
62 |
|
---|