using System; namespace NAudio.Dmo { /// /// DMO Inplace Process Flags /// [Flags] public enum DmoInPlaceProcessFlags { /// /// DMO_INPLACE_NORMAL /// Normal = 0, /// /// DMO_INPLACE_ZERO /// Zero = 0x1 } }