source: trunk/changelog@ 6131

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

* empty log message *

File size: 20.5 KB
Line 
1/* $Id: changelog,v 1.1550 2001-06-27 15:34:09 sandervl Exp $ */
2
3 2001-06-27: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o CreateProcess fixes for finding executables
5 o Don't load debug information
6 o Minor fix for PROCESSOR_IDENTIFIER environment variable
7 (model & stepping were reversed)
8 o FPU hack before calling executable & thread entrypoints.
9 For some weird reason this affects performance of floating
10 point apps. (at least for one fortan benchmark)
11
12 2001-06-25: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
13 - include\odin.h:
14 o Updated the EMX configuration so we can build WRC.exe
15 using this definition. This also includes the check and
16 calling convetions defined in windef.h.
17 Just note that gcc don't decorate the stdcall function
18 names like the other compilers.
19 o Made the other compilers ignore __attribute__ so they
20 can compile WRC.exe as well.
21 o Defined INLINE, inline and __inline__ so they all make
22 functions inline. (Someone should check this for Watcom C mode.)
23
24 - include\win\wine\unicode.h:
25 o Added extern "C" so the unicode libraries are compilable as C code.
26 (kernel32\unicode was forced to compile as C++)
27 o Removed inline workaround for C compilers. (Odin stuff)
28 o Wrapped away static for those function which was declared as
29 both static and inline. (the compiler was so noisy)
30
31 - kernel32\unicode, kernel32:
32 o Don't force it to C++.
33 o Demangled the one export from unicode, get_char_typeW.
34 o Curiosity: Made a minor correction to be able to compile
35 unicode.lib with EMX.
36
37 - OpenGL: o mesa\macros.h has been changed to not #define INLINE if
38 allready defined.
39 Hence inlining is now enabled!
40 Concider this an experiment as we might run into VAC optimizer bugs...
41 People are encouraged to play games ;-)
42
43 - WRC: o Use semicolon when reading include paths.
44 (This was what ALL I was supposed to fix today..)
45 o Made it compile with VAC and EMX using standard Odin32 makefiles.
46 flex and bison is not needed normally. But when changes which
47 requires running of these are made, define HAVE_FLEX
48 and HAVE_BISON in your environment.
49 o WRC is now removed and made as a 'needed_tool' together
50 with fastdep, impdef and the other stuff in the tools subdir.
51 NB. Be careful not to accidentally resurrects the /tools/bin/wrc.exe
52 archive! (May be we should rename the archive file later?)
53
54 - include\odin32.*.emx.mk:
55 o Made it working for WRC.exe. (release and debug, not profiling)
56 Generats OMF. Linking using link386.
57
58 - include\odin32.tools.*.mk:
59 o Disabled historic current directory inference rules and replaced
60 (some of them) with rules which puts object in OBJDIR.
61 o Added precompiler inference rules. These are generate a *.pre-c
62 or *.pre-cpp file in the current directory containing the output
63 from the precompiler. (not implemented for watcom yet)
64 This is very useful in when you wanna check a declaration...
65
66 2001-06-25: Sander van Leeuwen <sandervl@xs4all.nl>
67 - USER32: o Minor WM_TIMER translation fix (weird check removed)
68
69 2001-06-24: Sander van Leeuwen <sandervl@xs4all.nl>
70 - KERNEL32: o Rewrote CopyFile & MoveFile (just call DosCopy/Move)
71 o Rewrote CreateDirectory & RemoveDirectory
72 (call DosCreateDir & DosDeleteDir)
73 o Fix for HeapRealloc; recent HeapSize fix broke it
74 (listboxes empty)
75
76 2001-06-24: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
77 - src/makefile:
78 o Added empty subdir oslib to the NOTTOBEMADE list.
79 (Please don't forget this when you create empty directories.
80 All subdirs excluding the one mentioned in the lists in
81 makefile is made. So don't add a new directory without
82 either a makefile in it or updating /src/makefile.)
83
84 2001-06-23: Sander van Leeuwen <sandervl@xs4all.nl>
85 - KERNEL32: o HeapSize must return -1 for invalid pointer
86 o Semaphore updates (finished; not activated yet)
87 o Implemented IOCTL_CDROM_GET_VOLUME & IOCTL_CDROM_SET_VOLUME
88
89 2001-06-23: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
90 - KERNEL32: o Added Odin32 Spesific API for getting Odin build number.
91 (Requested by Yuri.)
92
93 2001-06-23: Achim Hasenmueller <achimha@innotek.de>
94 - USER32: o added OS/2 INI file access library (oslibprf)
95 o changed SystemParametersInfoA to no longer use Open32
96 o added more logging to GetMonitorInfoA/W
97
98 2001-06-22: Markus Montkowski <mmontkowski@gmx.de>
99 - TWAIN_32: o Updated initterm.cpp to use OS/2 and not Win32 APIs when loading
100 the OS/2 twain DLL. needed because of kernel32 change 2001-06-12
101
102 2001-06-22: Dietrich Teickner <Dietrich_Teickner@t-online.de>
103 - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
104
105 2001-06-22: Sander van Leeuwen <sandervl@xs4all.nl>
106 - USER32: o Don't fill background of system icon if no system icon
107 is present (could be seen in os/2 look mode)
108 o Reserved one window ulong (QWL_USER) for Odin apps (like Opera)
109 - KERNEL32: o Semaphore updates (still not activated)
110
111 2001-06-21: Sander van Leeuwen <sandervl@xs4all.nl>
112 - KERNEL32: o Semaphore updates (still not activated)
113
114 2001-06-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
115 - DDRAW: o io_init1, io_init2 and io_exit1 forgot to save/restore EBX.
116 (Broke some apps when XF86Sup.sys is installed)
117
118 2001-06-20: Sander van Leeuwen <sandervl@xs4all.nl>
119 - include\win\winioctl.h:
120 o Added CDROM ioctls
121 - KERNEL32: o Dummy CDROM ioctl support
122
123 2001-06-19: Sander van Leeuwen <sandervl@xs4all.nl>
124 - KERNEL32: o Started with event, mutex & semaphore rewrite
125 (code not activated)
126
127 2001-06-18: Sander van Leeuwen <sandervl@xs4all.nl>
128 - USER32: o Added export entry for GetScrollBarInfo
129 o Set ordinals for some exports
130 o Correct size of SBS_SIZEBOX and SBS_SIZEGRIP scrollbars
131 during creation. (if too high or wide)
132 (CPOV bottom scrollbar now appears)
133 - COMCTL32: o Wrong check in 6/17 comctl32 change
134
135 2001-06-17: Sander van Leeuwen <sandervl@xs4all.nl>
136 - KERNEL32: o Implemented IOCTL_SCSI_PASS_THROUGH_DIRECT storage ioctl
137 - USER32: o Fix for scrollbars with SBS_SIZEBOX or SBS_SIZEGRIP style
138 (use size specified in CreateWindow only if SBS_SIZEBOXTOPLEFTALIGN
139 nor SBS_SIZEBOXBOTTOMRIGHTALIGN style flags set)
140 (CPOV window now has the right size)
141 o Allow WS_VISIBLE changes in SetWindowLong (GWL_STYLE)
142 (CPOV controls in bottom left corner now visible)
143
144 2001-06-17: Dietrich Teickner <Dietrich_Teickner@t-online.de>
145 - COMCTL32: o Check for invalid lpItem in LISTVIEW_GetItemA
146 (fixes crash in SpeedCommander 6)
147 o Datetime control update with latest Wine code
148
149 2001-06-16: Sander van Leeuwen <sandervl@xs4all.nl>
150 - DDRAW: o Save & Restore FS when calling io_init2
151 o Partly implemented DrawEnumDisplayModes4
152 - WINMM: o Resume failed (during waveOutWrite) after underrun
153 (fixes audio error message in Atari Emulator)
154 - KERNEL32: o Implemented IOCTL_DISK_GET_DRIVE_GEOMETRY & IOCTL_DISK_GET_MEDIA_TYPES
155 o Allow direct sector reading from disk + changing read position
156 with SetFilePointer
157 o 6/14 kernel32 changes broke dynamic loading of LX dlls; getHMOD
158 returned the wrong module handle
159
160 2001-06-15: Sander van Leeuwen <sandervl@xs4all.nl>
161 - USER32: o Removed yesterday's getControl dialog change.
162 (causes errors for certain installshield installers)
163 o Add frame controls when app changes style flags (os/2 appearance)
164 (fixes missing titlebar when switching between maximized &
165 restored state for MDI windows in Opera)
166 - KERNEL32: o PDB.exit_code is a pointer to an unknown structure in NT
167 Fill it with a pointer to a memory block with 8th byte set to 1.
168 (fixes crash in AssetAllocator install)
169
170 2001-06-14: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
171 - KERNEL32: o Correct bug in LoadLibrary which prevented dynamically
172 - WIN32K: o Forgot to close file on failure in ldrOpen. When Pe2Lx
173 failed (due to wrong subsystem), the file remained open.
174
175 2001-06-14: Sander van Leeuwen <sandervl@xs4all.nl>
176 - USER32: o OSLibWinGetMsg: dispatch untranslated message immediately
177 and grab next one.
178 o Manually change min/max/restore button states (OS/2 appearance)
179 o Handle WM_SYSCOMMAND messages in frame window handler
180 o Button fix (Wine bug)
181 Must clear WS_TABSTOP of control that is already unchecked or
182 else multiple control can have this style ((auto)radiobutton)
183 and GetNextDlgTabItem will return the wrong one.
184 Happens in Opera preferences dialog (multimedia) where all
185 autoradio buttons have the WS_TABSTOP style.
186 o Added temporary workaround for Open32 crashes in Opera
187
188 2001-06-13: Sander van Leeuwen <sandervl@xs4all.nl>
189 - USER32: o Corrected position of PM titlebar control
190 o Added SetWindowAppearance function that can be used
191 by Odin32 apps to override the appearance (win32 or OS/2)
192 of windows.
193 o Changed menu font for OS/2 appearance (bold)
194 o Draw system menu icon ourselves (OS/2 appearance)
195 o SetWindowText fix (OS/2 appearance)
196 o WM_ERASEBKGND handling changes for dialogs
197 - GDI32: o CreateDIBSection bugfix (wrong ReleaseDC call)
198
199 2001-06-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
200 - WIN16LDR: o Made it compile with Watcom and MSC60.
201 Currently I can't link it with MSC60 form the DDK
202 since there is no window libraries there.
203 Watcom links fine. But the result is not tested.
204 - VDMDBG: o Stubbed this DLL. (It's used by the NT TaskMgr.)
205 (Documented in SDK, doc\misc\VDMDbg.Hlp. Which is included
206 in the NT sdk distributed with Watcom v11 - %WATCOM\sdk.)
207 - Win32k/Pe2Lx:
208 o Allowed loading of images using the NATIVE subsystem.
209 o Added symbols for build 14.065F (2001-05-08) all kernels.
210 - DailyBuild:
211 o Moved Odin.ini to system32 in daily .zips.
212 - NTDLL: o Stubbed NtOpenThread.
213
214 2001-06-12: Sander van Leeuwen <sandervl@xs4all.nl>
215 - USER32: o Partly fixed position of PM frame controls
216 o FillRect fix for 0 brush
217 o Workaround for windows with CS_CLASSDC class. Use same
218 mechanism as CS_OWNDC. (might not always work though)
219 No (easy) way to share a single DC between windows in PM.
220 (fixes paint problems in MED)
221 o Use critical sections for local hooks; faster than
222 kernel mutex semaphore calls.
223 - GDI32: o SetDIBColorTable bugfix
224 - KERNEL32: o Fail to load OS/2 (non-Odin) dlls in LoadLibrary
225 (Winbench tries this)
226 - ADVAPI32: o Pretend no services found in EnumServicesStatusA/W instead of
227 returning error.
228 (prevents crash in Winbench)
229
230 2001-06-11: Sander van Leeuwen <sandervl@xs4all.nl>
231 - USER32: o Reference count bugfixes
232 - GDI32: o Added RGB555 conversion for CreateDIBitmap & SetDIBits
233
234 2001-06-10: Sander van Leeuwen <sandervl@xs4all.nl>
235 - USER32: o SetParent bugfix (caused crashes in user32 after yesterday's changes)
236 o Preliminary support added for OS/2 look and feel (not finished)
237 Odin.ini option:
238 [ODINSYSTEM]
239 OS2Look=1 (default = 0)
240 Creates OS/2 Titlebar, system menu & min/max/close buttons.
241 Also overrides UseWinColors option (uses OS/2 colors).
242 NOTE: Can interfere with windows applications that draw their
243 own custom titlebar. (e.g. RealPlayer)
244 - KERNEL32: o Added OpenProfileUserMapping & CloseProfileUserMapping stubs.
245 o CreateProcess: launch win16 loader for NE executables
246 - WIN16LDR: o Preliminary version of winos2 loader for 16 bits installers
247 Overrides GetVersion & WinExec functions to return the
248 version NT returns and to launch 32 bits programs (using pe).
249 (NOT FINISHED and not included in daily build)
250 - PELDR: o Execute win16 loader for NE executables.
251
252 2001-06-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
253 - Win32API.h:
254 o Added APIs required to compile user32.
255 - src/makefile:
256 o Relaxed the locks a little.
257 - Win32k: o Separated VAC3 and VAC36 output. (Please re-run configure!)
258 - makefiles/VAC36:
259 o Ignore ILIB warnings. (like those in the opengl tree)
260
261 2001-06-09: Sander van Leeuwen <sandervl@xs4all.nl>
262 - USER32: o Keep reference count for window and class objects.
263 Only delete the objects when nobody else is using them anymore.
264 (fixes crashes due to premature destruction of objects;
265 e.g. during Napster startup)
266 - KERNEL32: o heap checking accidentally turned on during logging
267 (making the debug build extremely slow)
268 o Open32's CreateProcess can fail with ERROR_FILE_NOT_FOUND for
269 no apparent reason. Don't bail out when that happens, but try
270 to create the process anyway.
271 (fixes CreateProcess during Napster install)
272 o Improved version of InterlockedIncrement & InterlockedDecrement
273 (borrowed from Wine)
274
275 2001-06-08: Sander van Leeuwen <sandervl@xs4all.nl>
276 - KERNEL32: o WinExec fixes
277 o Ported Wine's WritePrivateProfileSectionA
278 - GDI32: o DIB Section blits: translate all ROPs
279 o GetDIBits fix; RGB conversion was not always performed;
280 now only for requested scanlines.
281
282 2001-06-08: Patrick Haller <patrick.haller@innotek.de>
283 - KERNEL32: o Optimizations for loading of PE images
284
285 2001-06-07: Sander van Leeuwen <sandervl@xs4all.nl>
286 - OLE32: o More VAC 3.6.5 compile fixes
287
288 2001-06-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
289 - FastDep: o Performance enh. Don't scan files more than 1 month older
290 than existing .depend file.
291 o Optimized AVL tree sligtly by not performing two strcmp
292 on the same keys (but resuing the result from the first).
293 o Improved dependencies genereated for OS/2 resource files.
294 (TODO: Fix possible bad precompiler checks for C/C++ and RC.)
295 o Code is now in sync with OS2Tools.
296
297 2001-06-06: Sander van Leeuwen <sandervl@xs4all.nl>
298 - OLE32: o VAC 3.6.5 compile fix
299
300 2001-06-05: Patrick Haller <patrick.haller@innotek.de>
301 - KERNEL32: o Fixed ordinal export resolving for PE executables
302 (SO52 complained about missing exports)
303
304 2001-06-05: Sander van Leeuwen <sandervl@xs4all.nl>
305 - COMCTL32: o Listview: Don't repaint subitem if changed text is the same as old one.
306 (fixes endless repainting loop in WinRAR 2.80)
307 - KERNEL32: o Optimized ordinal lookup even more.
308 (6900 ordinal lookups takes (on average) 31 ms now instead
309 of 78)
310
311 2001-06-04: Sander van Leeuwen <sandervl@xs4all.nl>
312 - KERNEL32: o Added driver dll plugin for custom device driver emulation
313 Enumerates keys in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services
314 that contain 'DllName' keys.
315 DllName contains the name of the plugin dll that exports
316 DrvOpen, DrvClose & DrvIOCtl.
317 o Dispatch breakpoint exception to application (release build only)
318 Some nasty applications expect this.
319
320 2001-06-03: Sander van Leeuwen <sandervl@xs4all.nl>
321 - USER32: o Ported & fixed ScrollDC (Wine)
322 (fixes scrolling in Adobe Framemaker 5.5)
323 - GDI32: o RGB 565->555 conversion in GetDIBits
324 o RGB 555->565 conversion in DIB Section sync
325 o Sync DIB section in RealizePalette if any colors changed
326 (fixes PowerDVD colors)
327
328 2001-06-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
329 - Win32k/configure.cmd:
330 o Corrected search for the VAC compiler.
331 o Removed stupid messages when -w is specified.
332
333 2001-06-02: Achim Hasenmueller <achimha@innotek.de>
334 - COMDLG32: o fix crash due to uninitialized COM object pointer in
335 Win95 open file dialog browse mode
336 o default to open mode in file dialog when the
337 OFN_NOVALIDATE mode is used
338 (fixes crash in FrameMaker 5.5 file dialog when opening
339 a file that has broken image references)
340 - KERNEL32: o log both error and no error conditions for GetLastError
341 with default error level. Sometimes, we don't set an error
342 where we should so this logging information is important
343 o set last error to 2 (ERROR_FILE_NOT_FOUND) when using
344 CreateFileA to open a non existing file.
345 DosOpen returned 110 (ERROR_OPEN_FAILED) in this case.
346 Verified with Windows 2000 SP2
347 (makes Acrobat Distiller 5.0 startup and work!)
348
349 2001-06-02: Sander van Leeuwen <sandervl@xs4all.nl>
350 - WINMM: o Default waveout volume can be controlled by a key in odin.ini:
351 [WINMM]
352 DefVolume=50[0-100] Default waveout volume (default = 100)
353 - USER32: o ScrollDC fix for translating clip & scroll rectangles
354 (fixes scrolling in Adobe Framemaker 5.5)
355
356 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
357 - USER32: o Send WM_HELP if F1 pressed & no menu active
358 o Disabled system hooks (only work in one process)
359 - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
360 barely noticable with 'real' applications)
361 - OLE32: o Added OleLoadPictureEx stub
362 - GDI32: o GetDIBits fix for querying the bitmap information
363 WGSS returns 0, but we should return the nr of scan lines requested
364 o GetDIBits fix for memory dcs. WGSS messes things up if
365 it's a memory DC.
366 (fixes lower right button in AIM's logon window when typing
367 in new name)
368 o ExtTextOutA/W fix for filling rectangle with background color
369 only. This doesn't seem to work (anymore) with GpiCharStringPosAt.
370 (fixes border between menu & button bar in Odin MFC app &
371 Acrobat Reader 4.05)
372 o StretchDIBits fix for RGB555 bitmaps
373 (fixes pictures in pdf files shown by Acrobat Reader 4.05)
374 - SHLWAPI: o Added PathGetCharTypeA/W from Wine
375
376 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
377 - KERNEL32: o benchmarked new experimental loader and reverted to
378 old but slightly optimized loader (processExport usually
379 outweighs processImport, so lookup is less valuable than
380 add to export list)
381 - SHELL32: o SIC_Initialize took extremely long to pre-initialize
382 its icon cache. Revert to on-demand loading of the icons,
383 speeds up loading of SHELL32 (therefore most apps)
384 by several seconds.
385
Note: See TracBrowser for help on using the repository browser.