CSPspEmu.Hle.Formats.audio.At3.SUB.MaiQueue0.GetLength C# (CSharp) Method

GetLength() public method

public GetLength ( ) : int
return int
        public int GetLength()
        {
            if (status != 0) return 0;
            int space = (rear - front + max_size) % max_size;
            return space;
        }