source: trunk/changelog@ 5909

Last change on this file since 5909 was 5909, checked in by phaller, 24 years ago

Fix for the ordinal exports

File size: 4.6 KB
Line 
1/* $Id: changelog,v 1.1482 2001-06-05 16:46:01 phaller Exp $ */
2
3 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
4 - KERNEL32: o Fixed ordinal export resolving for PE executables
5 (SO52 complained about missing exports)
6
7 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
8 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
9 (fixes endless repainting loop in WinRAR 2.80)
10
11 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
12 - KERNEL32: o Added driver dll plugin for custom device driver emulation
13 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
14 that contain 'DllName' keys.
15 DllName contains the name of the plugin dll that exports
16 DrvOpen, DrvClose & DrvIOCtl.
17 o Dispatch breakpoint exception to application (release build only)
18 Some nasty applications expect this.
19
20 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
21 - USER32: o Ported & fixed ScrollDC (Wine)
22 (fixes scrolling in Adobe Framemaker 5.5)
23 - GDI32: o RGB 565->555 conversion in GetDIBits
24 o RGB 555->565 conversion in DIB Section sync
25 o Sync DIB section in RealizePalette if any colors changed
26 (fixes PowerDVD colors)
27
28 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
29 - Win32k/configure.cmd:
30 o Corrected search for the VAC compiler.
31 o Removed stupid messages when -w is specified.
32
33 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
34 - COMDLG32: o fix crash due to uninitialized COM object pointer in
35 Win95 open file dialog browse mode
36 o default to open mode in file dialog when the
37 OFN_NOVALIDATE mode is used
38 (fixes crash in FrameMaker 5.5 file dialog when opening
39 a file that has broken image references)
40 - KERNEL32: o log both error and no error conditions for GetLastError
41 with default error level. Sometimes, we don't set an error
42 where we should so this logging information is important
43 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
44 CreateFileA to open a non existing file.
45 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
46 Verified with Windows 2000 SP2
47 (makes Acrobat Distiller 5.0 startup and work!)
48
49 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
50 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
51 [WINMM]
52 DefVolume=50[0-100] Default waveout volume (default = 100)
53 - USER32: o ScrollDC fix for translating clip & scroll rectangles
54 (fixes scrolling in Adobe Framemaker 5.5)
55
56 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
57 - USER32: o Send WM_HELP if F1 pressed & no menu active
58 o Disabled system hooks (only work in one process)
59 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
60 barely noticable with 'real' applications)
61 - OLE32: o Added OleLoadPictureEx stub
62 - GDI32: o GetDIBits fix for querying the bitmap information
63 WGSS returns 0, but we should return the nr of scan lines requested
64 o GetDIBits fix for memory dcs. WGSS messes things up if
65 it's a memory DC.
66 (fixes lower right button in AIM's logon window when typing
67 in new name)
68 o ExtTextOutA/W fix for filling rectangle with background color
69 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
70 (fixes border between menu & button bar in Odin MFC app &
71 Acrobat Reader 4.05)
72 o StretchDIBits fix for RGB555 bitmaps
73 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
74 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
75
76 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
77 - KERNEL32: o benchmarked new experimental loader and reverted to
78 old but slightly optimized loader (processExport usually
79 outweighs processImport, so lookup is less valuable than
80 add to export list)
81 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
82 its icon cache. Revert to on-demand loading of the icons,
83 speeds up loading of SHELL32 (therefore most apps)
84 by several seconds.
85
Note: See TracBrowser for help on using the repository browser.