This structure contains information on a buffer.
At a Glance
Header file: | Fsdmgr.h |
Windows CE versions: | 2.10 and later |
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 FSD_SCATTER_GATHER_INFO to point to the buffers where the data is stored—if read from disk—or read from—if data is written to disk. You can have multiple FSD_BUFFER_INFO structures, but they must be contiguous and the pfbi member of the FSD_SCATTER_GATHER_INFO structure must point to the first FSD_BUFFER_INFO structure.
See Also