summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/ir/ir_rst.h
blob: d932bb7e597d81c805ee9284da3b79743127c547 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        

                                            




                                     

                   
 
                                                    
       
                       
 




                                              


                   


                                                               

                      
// 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