mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 11:45:18 +02:00
Added dummy funcs + registered the module
This commit is contained in:
+29
-1
@@ -13,4 +13,32 @@
|
||||
// If not, see http://www.gnu.org/licenses/
|
||||
|
||||
// Official git repository and contact information can be found at
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
|
||||
#include "Core/HLE/sceNet_lib.h"
|
||||
|
||||
#include "Core/HLE/FunctionWrappers.h"
|
||||
#include "Core/HLE/HLE.h"
|
||||
|
||||
|
||||
|
||||
const HLEFunction sceNet_lib[] = {
|
||||
{0X1858883D, nullptr, "sceNetRand", 'i', "" },
|
||||
{0X2A73ADDC, nullptr, "sceNetStrtoul", 'i', "" },
|
||||
{0X4753D878, nullptr, "sceNetMemmove", 'i', "" },
|
||||
{0X80C9F02A, nullptr, "sceNetStrcpy", 'i', "" },
|
||||
{0X94DCA9F0, nullptr, "sceNetStrncmp", 'i', "" },
|
||||
{0X9CFBC7E3, nullptr, "sceNetStrcasecmp", 'i', "" },
|
||||
{0XA0F16ABD, nullptr, "sceNetStrcmp", 'i', "" },
|
||||
{0XB5CE388A, nullptr, "sceNetStrncpy", 'i', "" },
|
||||
{0XBCBE14CF, nullptr, "sceNetStrchr", 'i', "" },
|
||||
{0XCF705E46, nullptr, "sceNetSprintf", 'i', "" },
|
||||
{0XD8722983, nullptr, "sceNetStrlen", 'i', "" },
|
||||
{0XE0A81C7C, nullptr, "sceNetMemcmp", 'i', "" },
|
||||
};
|
||||
|
||||
|
||||
void Register_sceNet_lib() {
|
||||
RegisterModule("sceNet_lib", ARRAY_SIZE(sceNet_lib), sceNet_lib);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user