mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
TUS, SNS, Commerce and Clans modules are now in seperate files. Added a lot of headers and structures.
18 lines
No EOL
349 B
C++
18 lines
No EOL
349 B
C++
#include "stdafx.h"
|
|
#include "Emu/SysCalls/Modules.h"
|
|
#include "sceNpSns.h"
|
|
|
|
//void sceNpSns_unload();
|
|
//void sceNpSns_init();
|
|
//Module sceNpSns(0x0059, sceNpSns_init, nullptr, sceNpSns_unload);
|
|
Module *sceNpSns = nullptr;
|
|
|
|
void sceNpSns_unload()
|
|
{
|
|
// TODO: Unload SNS module
|
|
}
|
|
|
|
void sceNpSns_init()
|
|
{
|
|
// TODO: Register SNS module functions here
|
|
} |