Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-09-27 13:35:06 +0400
committerCorinna Vinschen <corinna@vinschen.de>2007-09-27 13:35:06 +0400
commitb75971ef8a9ea404cd31d553634d6d1d46159b59 (patch)
treefd0bbe15917b6df4387b7bafe622b866438c0e42 /winsup/cygwin/ntdll.h
parentdfbd95d35daf34da9be778483aced82e973154f0 (diff)
* ntdll.h (struct _FILE_COMPRESSION_INFORMATION): Align with definition
in w32api / MSDN. * fhandler_disk_file.cc (fhandler_base::fstat_helper): Accommodate change to struct _FILE_COMPRESSION_INFORMATION.
Diffstat (limited to 'winsup/cygwin/ntdll.h')
-rw-r--r--winsup/cygwin/ntdll.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/winsup/cygwin/ntdll.h b/winsup/cygwin/ntdll.h
index fa12f15f6..136334124 100644
--- a/winsup/cygwin/ntdll.h
+++ b/winsup/cygwin/ntdll.h
@@ -651,11 +651,12 @@ typedef struct _FILE_PIPE_LOCAL_INFORMATION
typedef struct _FILE_COMPRESSION_INFORMATION
{
- LARGE_INTEGER CompressedSize;
+ LARGE_INTEGER CompressedFileSize;
USHORT CompressionFormat;
UCHAR CompressionUnitShift;
- UCHAR Unknown;
- UCHAR ClusterSizeShift;
+ UCHAR ChunkShift;
+ UCHAR ClusterShift;
+ UCHAR Reserved[3];
} FILE_COMPRESSION_INFORMATION, *PFILE_COMPRESSION_INFORMATION;
typedef struct _FILE_FS_DEVICE_INFORMATION