mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-13 15:19:11 +00:00
16 lines
400 B
C++
16 lines
400 B
C++
#include "Libs.h"
|
|
|
|
#include "LibC.h"
|
|
#include "LibKernel.h"
|
|
#include "LibSceGnmDriver.h"
|
|
#include <Core/PS4/HLE/Graphics/video_out.h>
|
|
|
|
namespace HLE::Libs {
|
|
|
|
void Init_HLE_Libs(SymbolsResolver *sym) {
|
|
LibC::LibC_Register(sym);
|
|
LibKernel::LibKernel_Register(sym);
|
|
Graphics::VideoOut::videoOutRegisterLib(sym);
|
|
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
|
|
}
|
|
} // namespace HLE::Libs
|