summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ir/ir_rst.h
blob: d932bb7e597d81c805ee9284da3b79743127c547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included..

#pragma once

#include "core/hle/service/service.h"

namespace Service {
namespace IR {

class IR_RST_Interface : public Service::Interface {
public:
    IR_RST_Interface();

    std::string GetPortName() const override {
        return "ir:rst";
    }
};

void InitRST();
void ShutdownRST();

/// Reload input devices. Used when input configuration changed
void ReloadInputDevicesRST();

} // namespace IR
} // namespace Service