// ntifs.h
typedef enum _REFS_SMR_VOLUME_GC_STATE {
SmrGcStateInactive = 0,
SmrGcStatePaused = 1,
SmrGcStateActive = 2,
SmrGcStateActiveFullSpeed = 3
} REFS_SMR_VOLUME_GC_STATE, *PREFS_SMR_VOLUME_GC_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The REFS_SMR_VOLUME_GC_STATE enum specifies the garbage collection's current state.
SmrGcStateInactive:0The garbage collection is inactive.
SmrGcStatePaused:1The garbage collection has been paused.
SmrGcStateActive:2The garbage collection is running.
SmrGcStateActiveFullSpeed:3The garbage collection is running at full speed.