source: trunk/changelog@ 3997

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

* empty log message *

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