Add draft sceKernelFindModuleByUID (#13380)

* Add draft sceKernelFindModuleByUID

#13205

* Add KERNEL_SYSCALL flag

* oop

* oop2

* Not sure why make this change before

* Last night I might be too tried
This commit is contained in:
sum
2020-09-05 07:29:56 +02:00
committed by GitHub
parent d6399b6036
commit 37737ceaa1
3 changed files with 8 additions and 1 deletions
+6
View File
@@ -2327,6 +2327,12 @@ static u32 sceKernelGetModuleId()
return __KernelGetCurThreadModuleId();
}
u32 sceKernelFindModuleByUID(u32 uid)
{
ERROR_LOG(SCEMODULE, "UNIMPL sceKernelFindModuleByUID(%d)", uid);
return 0;
}
u32 sceKernelFindModuleByName(const char *name)
{
ERROR_LOG_REPORT(SCEMODULE, "UNIMPL sceKernelFindModuleByName(%s)", name);