2023-06-26 19:45:16 +02:00
|
|
|
#include "Libs.h"
|
2023-08-03 12:05:13 +02:00
|
|
|
|
2023-06-28 19:15:19 +02:00
|
|
|
#include "LibC.h"
|
2023-07-13 11:56:36 +02:00
|
|
|
#include "LibKernel.h"
|
2023-07-13 17:36:03 +02:00
|
|
|
#include "LibSceGnmDriver.h"
|
2023-08-23 22:20:43 +02:00
|
|
|
#include <Core/PS4/HLE/Graphics/video_out.h>
|
2023-06-26 19:45:16 +02:00
|
|
|
|
|
|
|
namespace HLE::Libs {
|
|
|
|
|
2023-08-03 12:05:13 +02:00
|
|
|
void Init_HLE_Libs(SymbolsResolver *sym) {
|
|
|
|
LibC::LibC_Register(sym);
|
|
|
|
LibKernel::LibKernel_Register(sym);
|
2023-08-23 22:20:43 +02:00
|
|
|
Graphics::VideoOut::videoOutRegisterLib(sym);
|
2023-08-03 12:05:13 +02:00
|
|
|
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
|
|
|
|
}
|
|
|
|
} // namespace HLE::Libs
|