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