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

sceIoSetAsyncCallback() private method

private sceIoSetAsyncCallback ( SceUID FileId, int CallbackId, int NotifyArgument ) : int
FileId SceUID
CallbackId int
NotifyArgument int
return int
        public int sceIoSetAsyncCallback(SceUID FileId, int CallbackId, int NotifyArgument)
        {
            throw(new NotImplementedException());
            #if false
            var File = GetFileArgFromHandle(FileId);
            var Callback = CallbackManager.Callbacks.Get(CallbackId);
            File.Callback = Callback;
            File.CallbackArgument = NotifyArgument;
            //CallbackManager.ScheduleCallback(Callback);
            return 0;
            #endif
        }