diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-01-22 17:43:22 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-01-22 17:43:22 +0000 |
commit | 4a96b0aa85fe8a4cabebf17229431e76f8b3453e (patch) | |
tree | 5ed427963780aeb198c3ea593b7a00aefe88a7b7 /winsup/cygwin/ntdll.h | |
parent | 226f5a32da9ff0311c3513f48167fce52d591632 (diff) | |
download | cygnal-4a96b0aa85fe8a4cabebf17229431e76f8b3453e.tar.gz cygnal-4a96b0aa85fe8a4cabebf17229431e76f8b3453e.tar.bz2 cygnal-4a96b0aa85fe8a4cabebf17229431e76f8b3453e.zip |
* ntdll.h (struct _FILE_FS_OBJECTID_INFORMATION): Define.
* path.cc (struct smb_extended_info): Define.
(fs_info::update): Request object id info to get Samba information.
Set flags according to new implementation.
* path.h (struct fs_info): Add samba_version to status_flags.
Implement flags() and samba_version() using IMPLEMENT_STATUS_FLAG.
Diffstat (limited to 'winsup/cygwin/ntdll.h')
-rw-r--r-- | winsup/cygwin/ntdll.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/ntdll.h b/winsup/cygwin/ntdll.h index fa1beee8d..91ddf28dd 100644 --- a/winsup/cygwin/ntdll.h +++ b/winsup/cygwin/ntdll.h @@ -712,6 +712,11 @@ typedef struct _FILE_FS_FULL_SIZE_INFORMATION ULONG BytesPerSector; } FILE_FS_FULL_SIZE_INFORMATION, *PFILE_FS_FULL_SIZE_INFORMATION; +typedef struct _FILE_FS_OBJECTID_INFORMATION { + UCHAR ObjectId[16]; + UCHAR ExtendedInfo[48]; +} FILE_FS_OBJECTID_INFORMATION, *PFILE_FS_OBJECTID_INFORMATION; + typedef enum _FSINFOCLASS { FileFsVolumeInformation = 1, FileFsLabelInformation, |