CSPspEmu.Core.Crypto.Kirk.sceUtilsBufferCopyWithRange C# (CSharp) Method

sceUtilsBufferCopyWithRange() public method

public sceUtilsBufferCopyWithRange ( byte Out, int OutSize, byte In, int InSize, int Command ) : int
Out byte
OutSize int
In byte
InSize int
Command int
return int
        public int sceUtilsBufferCopyWithRange(byte* Out, int OutSize, byte* In, int InSize, int Command)
        {
            return (int)hleUtilsBufferCopyWithRange(Out, OutSize, In, InSize, (CommandEnum)Command);
        }