CSPspEmu.Hle.Modules.iofilemgr.IoFileMgrForUser.sceIoIoctlAsync C# (CSharp) Method

sceIoIoctlAsync() private method

private sceIoIoctlAsync ( SceUID FileId, uint Command, byte InputPointer, int InputLength, byte OutputPointer, int OutputLength ) : int
FileId SceUID
Command uint
InputPointer byte
InputLength int
OutputPointer byte
OutputLength int
return int
        public int sceIoIoctlAsync(SceUID FileId, uint Command, byte* InputPointer, int InputLength, byte* OutputPointer, int OutputLength)
        {
            var File = GetFileArgFromHandle(FileId);
            File.AsyncLastResult = sceIoIoctl(FileId, Command, InputPointer, InputLength, OutputPointer, OutputLength);
            _DelayIo(IoDelayType.Ioctl);
            return 0;
        }