source: trunk/changelog@ 3995

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

* empty log message *

File size: 3.4 KB
Line 
1 /* $Id: changelog,v 1.1059 2000-08-11 10:54:35 sandervl Exp $ */
2
3 2000-08-11: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: Lock/Unlock
5 64 bits values are only supported by JFS
6 Try the 32 bits DosSetFileLocks if it fails with ERROR_INVALID_PARAMETER
7 (TODO: should check the partition type instead)
8 Build fake dll header for system dlls and use it's address
9 as instance handle.
10 - SRC\*\initterm.cpp
11 Changed RegisterLxDll call for fake headers.
12 - INCLUDE\misc.h:
13 Removed versionos2.h dependancy
14 - VERSION\version.cpp
15 Include versionos2.h
16 - COMCTL32: Put back old property page code (breaks VPBuddy preferences
17 dialog). SameTime install property sheet now messed up (again).
18
19 2000-08-10: Patrick Haller <phaller@gmx.net>
20 - KERNEL32: OSLibDosQueryVolumeFS does no more return an error if
21 the caller is not interested in the volume name.
22 Console Input handling improved, some correction.
23 SetConsoleTitleW fixed.
24 NOTE! lstrcpynAtoW and lstrcpynWtoA do no more enforce (erroneous)
25 string termination.
26 NT4's CMD.EXE is quite working now.
27
28 2000-08-09: Sander van Leeuwen <sandervl@xs4all.nl>
29 - KERNEL32: TLS changes (now updates THDB array instead of calling
30 Open32)
31
32 2000-08-09: Christoph Bratschi <cbratschi@datacomm.ch>
33 - COMCTL32: added language dependent resources
34
35 2000-08-08: Christoph Bratschi <cbratschi@datacomm.ch>
36 - COMCTL32: first part of Corel WINE 20000807 changes
37
38 2000-08-06: Sander van Leeuwen <sandervl@xs4all.nl>
39 - doc\ReportingBugs.txt:
40 Added a little more information
41 - tools\install
42 Add Logging.txt + symbol files to debug build.
43
44 2000-08-04: Sander van Leeuwen <sandervl@xs4all.nl>
45 - KERNEL32: Temporary workaround for differences in share mode between
46 OS/2 & NT (for opening the same file multiple times):
47 NT: CreateFile with FILE_SHARE_READ
48 CreateFile with FILE_SHARE_READ | FILE_SHARE_WRITE
49 -> 2nd CreateFile overrides share flags of first one
50 -> CreateFile with GENERIC_WRITE is now allowed
51 OS2: DosOpen with OPEN_SHARE_DENYWRITE
52 DosOpen with OPEN_SHARE_DENYNONE
53 -> sharing violation; can't change share flags while
54 handle returned by 1st DosOpen isn't closed
55 --> 'Solution': always open files in FILE_SHARE_DENYNONE mode
56 (several installation programs depend on this behaviour)
57
58 2000-08-01: Sander van Leeuwen <sandervl@xs4all.nl>
59 - KERNEL32: Create x:\Program Files & x:\Program Files\Common Files
60 directories in odininst.exe + extra registry keys:
61 [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
62 "ProgramFilesDir"="x:\Program Files"
63 "CommonFilesDir"="x:\Program Files\Common Files"
64 "SharedDir"="x:\Odin"
65 - COMCTL32: Fixed property page bugfix (wrong position) (by merging
66 latest PROPSHEET_ShowPage from Wine)
67 - DOC\ToDo.txt:
68 Added:
69 KERNEL32: Build fake PE headers for odin dlls (dll handle must be pointer to header)
70 (some applications use the handles as pointers)
Note: See TracBrowser for help on using the repository browser.