service: jit: stub JIT service

This commit is contained in:
Liam 2022-04-06 14:46:21 -04:00
parent e93b5c33eb
commit d414904aef
8 changed files with 88 additions and 1 deletions

View file

@ -0,0 +1,20 @@
// Copyright 2022 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
namespace Core {
class System;
}
namespace Service::SM {
class ServiceManager;
}
namespace Service::JIT {
/// Registers all JIT services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
} // namespace Service::JIT