// ntifs.h
typedef enum _SRV_INSTANCE_TYPE {
SrvInstanceTypeUndefined,
SrvInstanceTypePrimary,
SrvInstanceTypeCsv,
SrvInstanceTypeSBL,
SrvInstanceTypeSR,
SrvInstanceTypeVSMB
} SRV_INSTANCE_TYPE, *PSRV_INSTANCE_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The SRV_INSTANCE_TYPE enumeration type describes the SRV instance type for an SRV_OPEN_ECP_CONTEXT.
SrvInstanceTypeUndefinedThe SRV instance type is undefined.
SrvInstanceTypePrimaryThe open request came from a primary instance of SRV with user-facing shares.
SrvInstanceTypeCsvThe open request came from an internal instance of SRV used by CSVFS.
SrvInstanceTypeSBLThe open request came from an internal instance of SRV used by S2D at Software Layer Bus (SBL).
SrvInstanceTypeSRThe open request came from an internal instance of SRV used by Storage Replica.
SrvInstanceTypeVSMBThe open request came from an internal instance of SRV used by Hyper-V over SMB.