CSPspEmu.Hle.Modules._unknownPrx.sceMp3.sceMp3NotifyAddStreamData C# (CSharp) Method

sceMp3NotifyAddStreamData() private method

private sceMp3NotifyAddStreamData ( Mp3Stream Mp3Stream, int Size ) : int
Mp3Stream Mp3Stream
Size int
return int
        public int sceMp3NotifyAddStreamData(Mp3Stream Mp3Stream, int Size)
        {
            Mp3Stream.AddStreamData(
                PointerUtils.PointerToByteArray((byte*)Mp3Stream.Mp3Arguments->Mp3BufferPointer.GetPointer(Memory, Size), Size)
            );
            return 0;
        }