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 contains buffer information.

Syntax

typedef struct _FSD_BUFFER_INFO{
  PBYTE 
pBuffer;
  DWORD 
cbBuffer;
} FSD_BUFFER_INFO, *PFBI;

Members

pBuffer

Pointer to a buffer.

cbBuffer

Size of the buffer, in bytes.

Remarks

This structure is used in the FSD_SCATTER_GATHER_INFOstructure to point to the buffers in which the data is stored, if data is read from a disk. If data is written to a disk, it can be read from this buffer. You can have multiple FSD_BUFFER_INFOstructures, but they must be contiguous, and the pfbimember of the FSD_SCATTER_GATHER_INFOstructure must point to the first FSD_BUFFER_INFOstructure. The FSDMGR_ReadDiskExand the FSDMGR_WriteDiskExfunctions use this structure.

Requirements

Header fsdmgr.h
Windows Embedded CE Windows CE 2.10 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also