// winioctl.h
typedef struct _CSV_CONTROL_PARAM {
CSV_CONTROL_OP Operation;
LONGLONG Unused;
} CSV_CONTROL_PARAM, *PCSV_CONTROL_PARAM;
View the official Win32 API referenceNo description available.
Represents a type of CSV control operation.
OperationThe type of CSV control operation to undertake.
UnusedUnused.
This structure is used with the FSCTL_CSV_CONTROL control code to indicate what kind of CSV control operation is being undertaken. It is an alternative to calling that control code by just passing a CSV_CONTROL_OP enumeration value, as the structure encapsulates an enumeration value of that type.