mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
12 lines
204 B
C++
12 lines
204 B
C++
#include "Libs.h"
|
|
#include "LibC.h"
|
|
#include "LibKernel.h"
|
|
|
|
namespace HLE::Libs {
|
|
|
|
void Init_HLE_Libs(SymbolsResolver *sym)
|
|
{
|
|
LibC::LibC_Register(sym);
|
|
LibKernel::LibKernel_Register(sym);
|
|
}
|
|
} |