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