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