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