Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This structure is used with the FSCTL_QUERY_ALLOCATED_RANGEScontrol code to indicate a range of bytes in a file. On input, the structure indicates the range of the file to search. On output, the operation retrieves an array of FILE_ALLOCATED_RANGE_BUFFERstructures to indicate the allocated ranges within the search range.

Syntax

typedef struct _FILE_ALLOCATED_RANGE_BUFFER{
  LARGE_INTEGER 
FileOffset;
  LARGE_INTEGER 
Length;
} FILE_ALLOCATED_RANGE_BUFFER, *PFILE_ALLOCATED_RANGE_BUFFER;

Members

FileOffset

File offset of the start of a range of bytes in a file, in bytes.

Length

Size of the range, in bytes.

Requirements

Header fsioctl.h
Windows Embedded CE Windows CE 5.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also