Huge SceNp header additions and splitting

TUS, SNS, Commerce and Clans modules are now in seperate files.
Added a lot of headers and structures.
This commit is contained in:
Raul Tambre 2014-08-15 17:57:55 +03:00
parent 27403162ad
commit d36580f1dc
15 changed files with 3586 additions and 1015 deletions

View file

@ -0,0 +1,18 @@
#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
}