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-03 12:05:13 +02:00
|
|
|
#include "LibSceVideoOut.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);
|
|
|
|
LibSceVideoOut::LibSceVideoOut_Register(sym);
|
|
|
|
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
|
|
|
|
}
|
|
|
|
} // namespace HLE::Libs
|