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

sceIoIoctl() private method

private sceIoIoctl ( SceUID FileHandle, uint Command, byte InputPointer, int InputLength, byte OutputPointer, int OutputLength ) : int
FileHandle SceUID
Command uint
InputPointer byte
InputLength int
OutputPointer byte
OutputLength int
return int
        public int sceIoIoctl(SceUID FileHandle, uint Command, byte* InputPointer, int InputLength, byte* OutputPointer, int OutputLength)
        {
            var HleIoDrvFileArg = GetFileArgFromHandle(FileHandle);
            try
            {
                return HleIoDrvFileArg.HleIoDriver.IoIoctl(HleIoDrvFileArg, Command, InputPointer, InputLength, OutputPointer, OutputLength);
            }
            finally
            {
                _DelayIo(IoDelayType.Ioctl);
            }
        }