source: trunk/changelog@ 5941

Last change on this file since 5941 was 5941, checked in by bird, 24 years ago

* empty log message *

File size: 6.9 KB
RevLine 
[5941]1/* $Id: changelog,v 1.1491 2001-06-10 01:17:31 bird Exp $ */
[5313]2
[5941]3 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
4 - Win32API.h:
5 o Added APIs required to compile user32.
6
[5936]7 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
[5941]8 - USER32: o Keep reference count for window and class objects.
[5936]9 Only delete the objects when nobody else is using them anymore.
10 (fixes crashes due to premature destruction of objects;
11 e.g. during Napster startup)
[5937]12 - KERNEL32: o heap checking accidentally turned on during logging
13 (making the debug build extremely slow)
14 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
15 no apparent reason. Don't bail out when that happens, but try
16 to create the process anyway.
17 (fixes CreateProcess during Napster install)
18 o Improved version of InterlockedIncrement & InterlockedDecrement
19 (borrowed from Wine)
[5936]20
[5930]21 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
22 - KERNEL32: o WinExec fixes
23 o Ported Wine's WritePrivateProfileSectionA
24 - GDI32: o DIB Section blits: translate all ROPs
25 o GetDIBits fix; RGB conversion was not always performed;
26 now only for requested scanlines.
27
[5934]28 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
[5930]29 - KERNEL32: o Optimizations for loading of PE images
30
[5924]31 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
32 - OLE32: o More VAC 3.6.5 compile fixes
33
[5922]34 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
35 - FastDep: o Performance enh. Don't scan files more than 1 month older
36 than existing .depend file.
37 o Optimized AVL tree sligtly by not performing two strcmp
38 on the same keys (but resuing the result from the first).
[5924]39 o Improved dependencies genereated for OS/2 resource files.
[5922]40 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
41 o Code is now in sync with OS2Tools.
42
[5917]43 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
44 - OLE32: o VAC 3.6.5 compile fix
45
[5909]46 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
47 - KERNEL32: o Fixed ordinal export resolving for PE executables
48 (SO52 complained about missing exports)
49
[5907]50 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
51 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
52 (fixes endless repainting loop in WinRAR 2.80)
[5911]53 - KERNEL32: o Optimized ordinal lookup even more.
[5922]54 (6900 ordinal lookups takes (on average) 31 ms now instead
[5911]55 of 78)
[5907]56
[5904]57 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
58 - KERNEL32: o Added driver dll plugin for custom device driver emulation
59 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
60 that contain 'DllName' keys.
61 DllName contains the name of the plugin dll that exports
62 DrvOpen, DrvClose & DrvIOCtl.
63 o Dispatch breakpoint exception to application (release build only)
64 Some nasty applications expect this.
65
[5897]66 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
67 - USER32: o Ported & fixed ScrollDC (Wine)
68 (fixes scrolling in Adobe Framemaker 5.5)
[5900]69 - GDI32: o RGB 565->555 conversion in GetDIBits
70 o RGB 555->565 conversion in DIB Section sync
71 o Sync DIB section in RealizePalette if any colors changed
72 (fixes PowerDVD colors)
[5897]73
[5889]74 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
75 - Win32k/configure.cmd:
76 o Corrected search for the VAC compiler.
77 o Removed stupid messages when -w is specified.
78
[5879]79 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
80 - COMDLG32: o fix crash due to uninitialized COM object pointer in
81 Win95 open file dialog browse mode
82 o default to open mode in file dialog when the
83 OFN_NOVALIDATE mode is used
84 (fixes crash in FrameMaker 5.5 file dialog when opening
85 a file that has broken image references)
[5887]86 - KERNEL32: o log both error and no error conditions for GetLastError
87 with default error level. Sometimes, we don't set an error
88 where we should so this logging information is important
[5891]89 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
90 CreateFileA to open a non existing file.
91 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
92 Verified with Windows 2000 SP2
[5922]93 (makes Acrobat Distiller 5.0 startup and work!)
[5879]94
[5875]95 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
96 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
97 [WINMM]
98 DefVolume=50[0-100] Default waveout volume (default = 100)
[5884]99 - USER32: o ScrollDC fix for translating clip & scroll rectangles
100 (fixes scrolling in Adobe Framemaker 5.5)
[5875]101
[5857]102 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
[5864]103 - USER32: o Send WM_HELP if F1 pressed & no menu active
104 o Disabled system hooks (only work in one process)
[5857]105 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
106 barely noticable with 'real' applications)
107 - OLE32: o Added OleLoadPictureEx stub
108 - GDI32: o GetDIBits fix for querying the bitmap information
109 WGSS returns 0, but we should return the nr of scan lines requested
[5865]110 o GetDIBits fix for memory dcs. WGSS messes things up if
111 it's a memory DC.
112 (fixes lower right button in AIM's logon window when typing
113 in new name)
[5867]114 o ExtTextOutA/W fix for filling rectangle with background color
115 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
116 (fixes border between menu & button bar in Odin MFC app &
117 Acrobat Reader 4.05)
[5889]118 o StretchDIBits fix for RGB555 bitmaps
[5871]119 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
[5857]120 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
121
[5849]122 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
123 - KERNEL32: o benchmarked new experimental loader and reverted to
124 old but slightly optimized loader (processExport usually
125 outweighs processImport, so lookup is less valuable than
126 add to export list)
[5889]127 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
[5849]128 its icon cache. Revert to on-demand loading of the icons,
[5889]129 speeds up loading of SHELL32 (therefore most apps)
[5849]130 by several seconds.
131
Note: See TracBrowser for help on using the repository browser.