[3971] | 1 | /* $Id: changelog,v 1.1054 2000-08-08 17:10:17 cbratschi Exp $ */
|
---|
[2659] | 2 |
|
---|
[3971] | 3 | 2000-08-08: Christoph Bratschi <cbratschi@datacomm.ch>
|
---|
| 4 | - COMCTL32: first part of Corel WINE 20000807 changes
|
---|
| 5 |
|
---|
[3959] | 6 | 2000-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 7 | - doc\ReportingBugs.txt:
|
---|
| 8 | Added a little more information
|
---|
| 9 | - tools\install
|
---|
| 10 | Add Logging.txt + symbol files to debug build.
|
---|
| 11 |
|
---|
[3949] | 12 | 2000-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 13 | - KERNEL32: Temporary workaround for differences in share mode between
|
---|
| 14 | OS/2 & NT (for opening the same file multiple times):
|
---|
| 15 | NT: CreateFile with FILE_SHARE_READ
|
---|
| 16 | CreateFile with FILE_SHARE_READ | FILE_SHARE_WRITE
|
---|
| 17 | -> 2nd CreateFile overrides share flags of first one
|
---|
| 18 | -> CreateFile with GENERIC_WRITE is now allowed
|
---|
| 19 | OS2: DosOpen with OPEN_SHARE_DENYWRITE
|
---|
| 20 | DosOpen with OPEN_SHARE_DENYNONE
|
---|
| 21 | -> sharing violation; can't change share flags while
|
---|
| 22 | handle returned by 1st DosOpen isn't closed
|
---|
| 23 | --> 'Solution': always open files in FILE_SHARE_DENYNONE mode
|
---|
| 24 | (several installation programs depend on this behaviour)
|
---|
| 25 |
|
---|
[3909] | 26 | 2000-08-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 27 | - KERNEL32: Create x:\Program Files & x:\Program Files\Common Files
|
---|
| 28 | directories in odininst.exe + extra registry keys:
|
---|
| 29 | [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
|
---|
| 30 | "ProgramFilesDir"="x:\Program Files"
|
---|
| 31 | "CommonFilesDir"="x:\Program Files\Common Files"
|
---|
| 32 | "SharedDir"="x:\Odin"
|
---|
[3911] | 33 | - COMCTL32: Fixed property page bugfix (wrong position) (by merging
|
---|
| 34 | latest PROPSHEET_ShowPage from Wine)
|
---|
| 35 | - DOC\ToDo.txt:
|
---|
[3895] | 36 | Added:
|
---|
[3909] | 37 | KERNEL32: Build fake PE headers for odin dlls (dll handle must be pointer to header)
|
---|
| 38 | (some applications use the handles as pointers)
|
---|