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,7 +2,7 @@
|
|||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
extern Module cellHttpUtil;
|
||||
extern Module<> cellHttpUtil;
|
||||
|
||||
s32 cellHttpUtilParseUri()
|
||||
{
|
||||
|
|
@ -124,7 +124,7 @@ s32 cellHttpUtilBase64Decoder()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
Module cellHttpUtil("cellHttpUtil", []()
|
||||
Module<> cellHttpUtil("cellHttpUtil", []()
|
||||
{
|
||||
REG_FUNC(cellHttpUtil, cellHttpUtilParseUri);
|
||||
REG_FUNC(cellHttpUtil, cellHttpUtilParseUriPath);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue