// wdm.h
typedef enum _CLFS_MGMT_POLICY_TYPE {
ClfsMgmtPolicyMaximumSize,
ClfsMgmtPolicyMinimumSize,
ClfsMgmtPolicyNewContainerSize,
ClfsMgmtPolicyGrowthRate,
ClfsMgmtPolicyLogTail,
ClfsMgmtPolicyAutoShrink,
ClfsMgmtPolicyAutoGrow,
ClfsMgmtPolicyNewContainerPrefix,
ClfsMgmtPolicyNewContainerSuffix,
ClfsMgmtPolicyNewContainerExtension,
ClfsMgmtPolicyInvalid
} CLFS_MGMT_POLICY_TYPE, *PCLFS_MGMT_POLICY_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The CLFS_MGMT_POLICY_TYPE enumeration type identifies the type of a CLFS management policy.
ClfsMgmtPolicyMaximumSizeIndicates a policy that specifies the maximum size of a log.
ClfsMgmtPolicyMinimumSizeIndicates a policy that specifies the minimum size of a log.
ClfsMgmtPolicyNewContainerSizeIndicates a policy that specifies the size of new containers that are created.
ClfsMgmtPolicyGrowthRateIndicates a policy that specifies how many new containers will be added to the log each time the log grows.
ClfsMgmtPolicyLogTailIndicates a policy that specifies how much free space will be requested when a client is notified to move its log tail.
ClfsMgmtPolicyAutoShrinkIndicates a policy that specifies when the log will shrink based on the percentage of the log that is free.
ClfsMgmtPolicyAutoGrowIndicates a policy that specifies whether the log should grow when fewer than two containers are free.
ClfsMgmtPolicyNewContainerPrefixIndicates a policy that specifies a prefix for the file name of each container, as well as the full path to the directory where the containers will be placed.
ClfsMgmtPolicyNewContainerSuffixIndicates a policy that specifies a number to use as the starting suffix for container file names.
ClfsMgmtPolicyNewContainerExtensionIndicates a policy that specifies an extension for the file name of each container.
ClfsMgmtPolicyInvalidReserved for internal use.
Each type of CLFS management policy corresponds to a specific interpretation of the CLFS_MGMT_POLICY structure. The PolicyType member of the CLFS_MGMT_POLICY structure is a valid value of the CLFS_MGMT_POLICY_TYPE enumeration.