source: trunk/changelog@ 6037

Last change on this file since 6037 was 6037, checked in by sandervl, 24 years ago

* empty log message *

File size: 13.0 KB
RevLine 
[6037]1/* $Id: changelog,v 1.1525 2001-06-17 13:58:59 sandervl Exp $ */
[5313]2
[6037]3 2001-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o Implemented IOCTL_SCSI_PASS_THROUGH_DIRECT storage ioctl
5
[6024]6 2001-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
7 - DDRAW: o Save & Restore FS when calling io_init2
[6031]8 o Partly implemented DrawEnumDisplayModes4
[6027]9 - WINMM: o Resume failed (during waveOutWrite) after underrun
10 (fixes audio error message in Atari Emulator)
[6031]11 - KERNEL32: o Implemented IOCTL_DISK_GET_DRIVE_GEOMETRY & IOCTL_DISK_GET_MEDIA_TYPES
12 o Allow direct sector reading from disk + changing read position
13 with SetFilePointer
[6032]14 o 6/14 kernel32 changes broke dynamic loading of LX dlls; getHMOD
15 returned the wrong module handle
[6024]16
[6018]17 2001-06-15: Sander van Leeuwen <sandervl@xs4all.nl>
18 - USER32: o Removed yesterday's getControl dialog change.
19 (causes errors for certain installshield installers)
20 o Add frame controls when app changes style flags (os/2 appearance)
21 (fixes missing titlebar when switching between maximized &
22 restored state for MDI windows in Opera)
[6020]23 - KERNEL32: o PDB.exit_code is a pointer to an unknown structure in NT
24 Fill it with a pointer to a memory block with 8th byte set to 1.
25 (fixes crash in AssetAllocator install)
[6018]26
[6016]27 2001-06-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
[6018]28 - KERNEL32: o Correct bug in LoadLibrary which prevented dynamically
[6017]29 - WIN32K: o Forgot to close file on failure in ldrOpen. When Pe2Lx
[6016]30 failed (due to wrong subsystem), the file remained open.
31
[6007]32 2001-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
33 - USER32: o OSLibWinGetMsg: dispatch untranslated message immediately
34 and grab next one.
35 o Manually change min/max/restore button states (OS/2 appearance)
36 o Handle WM_SYSCOMMAND messages in frame window handler
[6010]37 o Button fix (Wine bug)
[6016]38 Must clear WS_TABSTOP of control that is already unchecked or
39 else multiple control can have this style ((auto)radiobutton)
[6010]40 and GetNextDlgTabItem will return the wrong one.
[6016]41 Happens in Opera preferences dialog (multimedia) where all
[6010]42 autoradio buttons have the WS_TABSTOP style.
[6013]43 o Added temporary workaround for Open32 crashes in Opera
[6007]44
[5988]45 2001-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
46 - USER32: o Corrected position of PM titlebar control
[5990]47 o Added SetWindowAppearance function that can be used
[5997]48 by Odin32 apps to override the appearance (win32 or OS/2)
[5990]49 of windows.
[5995]50 o Changed menu font for OS/2 appearance (bold)
51 o Draw system menu icon ourselves (OS/2 appearance)
52 o SetWindowText fix (OS/2 appearance)
[6000]53 o WM_ERASEBKGND handling changes for dialogs
[5990]54 - GDI32: o CreateDIBSection bugfix (wrong ReleaseDC call)
[5988]55
[5981]56 2001-06-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
57 - WIN16LDR: o Made it compile with Watcom and MSC60.
58 Currently I can't link it with MSC60 form the DDK
59 since there is no window libraries there.
60 Watcom links fine. But the result is not tested.
[5986]61 - VDMDBG: o Stubbed this DLL. (It's used by the NT TaskMgr.)
[5987]62 (Documented in SDK, doc\misc\VDMDbg.Hlp. Which is included
63 in the NT sdk distributed with Watcom v11 - %WATCOM\sdk.)
[5986]64 - Win32k/Pe2Lx:
65 o Allowed loading of images using the NATIVE subsystem.
[6005]66 o Added symbols for build 14.065F (2001-05-08) all kernels.
[5997]67 - DailyBuild:
68 o Moved Odin.ini to system32 in daily .zips.
[5999]69 - NTDLL: o Stubbed NtOpenThread.
[5981]70
[5970]71 2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
72 - USER32: o Partly fixed position of PM frame controls
[5971]73 o FillRect fix for 0 brush
74 o Workaround for windows with CS_CLASSDC class. Use same
75 mechanism as CS_OWNDC. (might not always work though)
76 No (easy) way to share a single DC between windows in PM.
77 (fixes paint problems in MED)
78 o Use critical sections for local hooks; faster than
79 kernel mutex semaphore calls.
80 - GDI32: o SetDIBColorTable bugfix
81 - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
82 (Winbench tries this)
[5975]83 - ADVAPI32: o Pretend no services found in EnumServicesStatusA/W instead of
84 returning error.
85 (prevents crash in Winbench)
[5970]86
[5963]87 2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
88 - USER32: o Reference count bugfixes
[5966]89 - GDI32: o Added RGB555 conversion for CreateDIBitmap & SetDIBits
[5963]90
[5952]91 2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
92 - USER32: o SetParent bugfix (caused crashes in user32 after yesterday's changes)
93 o Preliminary support added for OS/2 look and feel (not finished)
94 Odin.ini option:
95 [ODINSYSTEM]
96 OS2Look=1 (default = 0)
[5981]97 Creates OS/2 Titlebar, system menu & min/max/close buttons.
[5952]98 Also overrides UseWinColors option (uses OS/2 colors).
[5981]99 NOTE: Can interfere with windows applications that draw their
[5952]100 own custom titlebar. (e.g. RealPlayer)
[5953]101 - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
[5958]102 o CreateProcess: launch win16 loader for NE executables
[5953]103 - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
104 Overrides GetVersion & WinExec functions to return the
105 version NT returns and to launch 32 bits programs (using pe).
[5957]106 (NOT FINISHED and not included in daily build)
[5953]107 - PELDR: o Execute win16 loader for NE executables.
[5952]108
[5941]109 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
110 - Win32API.h:
111 o Added APIs required to compile user32.
[5943]112 - src/makefile:
113 o Relaxed the locks a little.
[5946]114 - Win32k: o Separated VAC3 and VAC36 output. (Please re-run configure!)
[5948]115 - makefiles/VAC36:
116 o Ignore ILIB warnings. (like those in the opengl tree)
[5941]117
[5936]118 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
[5941]119 - USER32: o Keep reference count for window and class objects.
[5936]120 Only delete the objects when nobody else is using them anymore.
121 (fixes crashes due to premature destruction of objects;
122 e.g. during Napster startup)
[5937]123 - KERNEL32: o heap checking accidentally turned on during logging
124 (making the debug build extremely slow)
125 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
126 no apparent reason. Don't bail out when that happens, but try
127 to create the process anyway.
128 (fixes CreateProcess during Napster install)
129 o Improved version of InterlockedIncrement & InterlockedDecrement
130 (borrowed from Wine)
[5936]131
[5930]132 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
133 - KERNEL32: o WinExec fixes
134 o Ported Wine's WritePrivateProfileSectionA
135 - GDI32: o DIB Section blits: translate all ROPs
136 o GetDIBits fix; RGB conversion was not always performed;
137 now only for requested scanlines.
138
[5934]139 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
[5930]140 - KERNEL32: o Optimizations for loading of PE images
141
[5924]142 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
143 - OLE32: o More VAC 3.6.5 compile fixes
144
[5922]145 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
146 - FastDep: o Performance enh. Don't scan files more than 1 month older
147 than existing .depend file.
148 o Optimized AVL tree sligtly by not performing two strcmp
149 on the same keys (but resuing the result from the first).
[5924]150 o Improved dependencies genereated for OS/2 resource files.
[5922]151 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
152 o Code is now in sync with OS2Tools.
153
[5917]154 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
155 - OLE32: o VAC 3.6.5 compile fix
156
[5909]157 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
158 - KERNEL32: o Fixed ordinal export resolving for PE executables
159 (SO52 complained about missing exports)
160
[5907]161 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
162 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
163 (fixes endless repainting loop in WinRAR 2.80)
[5911]164 - KERNEL32: o Optimized ordinal lookup even more.
[5922]165 (6900 ordinal lookups takes (on average) 31 ms now instead
[5911]166 of 78)
[5907]167
[5904]168 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
169 - KERNEL32: o Added driver dll plugin for custom device driver emulation
170 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
171 that contain 'DllName' keys.
172 DllName contains the name of the plugin dll that exports
173 DrvOpen, DrvClose & DrvIOCtl.
174 o Dispatch breakpoint exception to application (release build only)
175 Some nasty applications expect this.
176
[5897]177 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
178 - USER32: o Ported & fixed ScrollDC (Wine)
179 (fixes scrolling in Adobe Framemaker 5.5)
[5900]180 - GDI32: o RGB 565->555 conversion in GetDIBits
181 o RGB 555->565 conversion in DIB Section sync
182 o Sync DIB section in RealizePalette if any colors changed
183 (fixes PowerDVD colors)
[5897]184
[5889]185 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
186 - Win32k/configure.cmd:
187 o Corrected search for the VAC compiler.
188 o Removed stupid messages when -w is specified.
189
[5879]190 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
191 - COMDLG32: o fix crash due to uninitialized COM object pointer in
192 Win95 open file dialog browse mode
193 o default to open mode in file dialog when the
194 OFN_NOVALIDATE mode is used
195 (fixes crash in FrameMaker 5.5 file dialog when opening
196 a file that has broken image references)
[5887]197 - KERNEL32: o log both error and no error conditions for GetLastError
198 with default error level. Sometimes, we don't set an error
199 where we should so this logging information is important
[5891]200 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
201 CreateFileA to open a non existing file.
202 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
203 Verified with Windows 2000 SP2
[5922]204 (makes Acrobat Distiller 5.0 startup and work!)
[5879]205
[5875]206 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
207 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
208 [WINMM]
209 DefVolume=50[0-100] Default waveout volume (default = 100)
[5884]210 - USER32: o ScrollDC fix for translating clip & scroll rectangles
211 (fixes scrolling in Adobe Framemaker 5.5)
[5875]212
[5857]213 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
[5864]214 - USER32: o Send WM_HELP if F1 pressed & no menu active
215 o Disabled system hooks (only work in one process)
[5857]216 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
217 barely noticable with 'real' applications)
218 - OLE32: o Added OleLoadPictureEx stub
219 - GDI32: o GetDIBits fix for querying the bitmap information
220 WGSS returns 0, but we should return the nr of scan lines requested
[5865]221 o GetDIBits fix for memory dcs. WGSS messes things up if
222 it's a memory DC.
223 (fixes lower right button in AIM's logon window when typing
224 in new name)
[5867]225 o ExtTextOutA/W fix for filling rectangle with background color
226 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
227 (fixes border between menu & button bar in Odin MFC app &
228 Acrobat Reader 4.05)
[5889]229 o StretchDIBits fix for RGB555 bitmaps
[5871]230 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
[5857]231 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
232
[5849]233 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
234 - KERNEL32: o benchmarked new experimental loader and reverted to
235 old but slightly optimized loader (processExport usually
236 outweighs processImport, so lookup is less valuable than
237 add to export list)
[5889]238 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
[5849]239 its icon cache. Revert to on-demand loading of the icons,
[5889]240 speeds up loading of SHELL32 (therefore most apps)
[5849]241 by several seconds.
242
Note: See TracBrowser for help on using the repository browser.