source: trunk/changelog@ 3964

Last change on this file since 3964 was 3964, checked in by sandervl, 25 years ago

* empty log message *

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