psm: Stub GetChargerType

Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
This commit is contained in:
Zach Hilman
2018-10-21 22:03:17 -04:00
parent 10a2d20e26
commit 314a948373
2 changed files with 27 additions and 24 deletions

View File

@ -3,7 +3,6 @@
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service::SM {
class ServiceManager;
@ -11,15 +10,6 @@ class ServiceManager;
namespace Service::PSM {
class PSM final : public ServiceFramework<PSM> {
public:
explicit PSM();
~PSM() override;
private:
void GetBatteryChargePercentage(Kernel::HLERequestContext& ctx);
};
void InstallInterfaces(SM::ServiceManager& sm);
} // namespace Service::PSM