source: trunk/changelog@ 4000

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

* empty log message *

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