summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/hid/hid_user.h
blob: 0eeec2c2579bcb1a34e148a113eb946cd663b685 (plain) (tree)
1
2
3
4
5
6
7
8







                                            


                                                                                          


                   


                         
                                                   
       
                      





                                              

                     
// Copyright 2015 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"

// This service is used for interfacing to physical user controls.
// Uses include game pad controls, touchscreen, accelerometers, gyroscopes, and debug pad.

namespace Service {
namespace HID {
    
/**
 * HID service interface.
 */
class HID_U_Interface : public Service::Interface {
public:
    HID_U_Interface();

    std::string GetPortName() const override {
        return "hid:USER";
    }
};

} // namespace HID
} // namespace Service