// winioctl.h
typedef struct _CSV_QUERY_MDS_PATH {
DWORD MdsNodeId;
DWORD DsNodeId;
DWORD PathLength;
WCHAR Path[1];
} CSV_QUERY_MDS_PATH, *PCSV_QUERY_MDS_PATH;
View the official Win32 API referenceNo description available.
Contains the path that is used by CSV to communicate to the MDS.
MdsNodeIdThe identifier of an MDS node.
DsNodeIdThe identifier of a DS node.
PathLengthThe length of the path.
PathThe path.
This structure is used if the FSCTL_CSV_CONTROL control code is called with a CSV_CONTROL_OP enumeration value of CsvControlQueryMdsPath, or if the control code is used with an CSV_CONTROL_PARAM structure containing that enumeration value.