Data structure for information about an attached file system (local or remote), or about a character device or pseudocharacter device attached to the file system.
typedef struct _FSQBUFFER2 { USHORT iType; /* Type of item. */ USHORT cbName; /* Length, in bytes, of the item name, not including null. */ USHORT cbFSDName; /* Length, in bytes, of the file-system driver name, not including null. */ USHORT cbFSAData; /* Length, in bytes, of the file-system driver Attach data returned by the file-system driver. */ UCHAR szName[1]; /* Item name. */ UCHAR szFSDName[1]; /* Name of the file-system driver that the item is attached to. */ UCHAR rgFSAData[1]; /* File-system driver Attach data returned by the file-system driver. */ } FSQBUFFER2; typedef FSQBUFFER2 * PFSQBUFFER2 ;