mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Experimental class template Module<T>
Allocates ps3 memory for specific instance T
This commit is contained in:
parent
093ecc0a02
commit
12f36cf31f
123 changed files with 494 additions and 379 deletions
|
|
@ -2,8 +2,8 @@
|
|||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
extern Module cellHttp;
|
||||
extern Module cellHttps;
|
||||
extern Module<> cellHttp;
|
||||
extern Module<> cellHttps;
|
||||
|
||||
s32 cellHttpInit()
|
||||
{
|
||||
|
|
@ -599,7 +599,7 @@ s32 cellHttpClientSetSslIdDestroyCallback()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
Module cellHttp("cellHttp", []()
|
||||
Module<> cellHttp("cellHttp", []()
|
||||
{
|
||||
REG_FUNC(cellHttp, cellHttpInit);
|
||||
REG_FUNC(cellHttp, cellHttpEnd);
|
||||
|
|
@ -713,7 +713,7 @@ Module cellHttp("cellHttp", []()
|
|||
REG_FUNC(cellHttp, cellHttpClientSetSslIdDestroyCallback);
|
||||
});
|
||||
|
||||
Module cellHttps("cellHttps", []()
|
||||
Module<> cellHttps("cellHttps", []()
|
||||
{
|
||||
// cellHttps doesn't have functions (cellHttpsInit belongs to cellHttp, for example)
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue