mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-03-27 22:05:25 -06:00
23 lines
817 B
C++
23 lines
817 B
C++
#include "Libs.h"
|
|
|
|
#include "LibKernel.h"
|
|
#include "LibSceGnmDriver.h"
|
|
#include <core/PS4/HLE/Graphics/video_out.h>
|
|
#include "core/hle/libraries/libuserservice/user_service.h"
|
|
#include "core/hle/libraries/libpad/pad.h"
|
|
#include <core/hle/libraries/libsystemservice/system_service.h>
|
|
#include "core/hle/libraries/libc/libc.h"
|
|
|
|
namespace HLE::Libs {
|
|
|
|
void Init_HLE_Libs(SymbolsResolver *sym) {
|
|
|
|
LibKernel::LibKernel_Register(sym);
|
|
Graphics::VideoOut::videoOutRegisterLib(sym);
|
|
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
|
|
Core::Libraries::LibUserService::userServiceSymbolsRegister(sym);
|
|
Core::Libraries::LibPad::padSymbolsRegister(sym);
|
|
Core::Libraries::LibSystemService::systemServiceSymbolsRegister(sym);
|
|
Core::Libraries::LibC::libcSymbolsRegister(sym);
|
|
}
|
|
} // namespace HLE::Libs
|