CSPspEmu.Hle.Modules.modulemgr.ModuleMgrForUser.sceKernelLoadModule C# (CSharp) Метод

sceKernelLoadModule() приватный Метод

private sceKernelLoadModule ( string Path, uint Flags, SceKernelLMOption SceKernelLMOption ) : int
Path string
Flags uint
SceKernelLMOption SceKernelLMOption
Результат int
        public int sceKernelLoadModule(string Path, uint Flags, SceKernelLMOption* SceKernelLMOption)
        {
            return sceKernelLoadModuleWithStream(() =>
            {
                return HleIoManager.HleIoWrapper.Open(Path, Vfs.HleIoFlags.Read, Vfs.SceMode.All);
            }, Path, Flags, SceKernelLMOption);
        }