summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-15 03:24:50 +0100
committerbunnei <bunneidev@gmail.com>2018-01-15 03:45:06 +0100
commitf4a3d282246406d44a391aafd8d494ff68669cfa (patch)
treeae3cc59843498e5e5d5f11a16311929b7a0c5979 /src/core/hle/service/hid/hid.h
parentMerge pull request #10 from Andrix44/mpwarnings (diff)
downloadyuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.tar
yuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.tar.gz
yuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.tar.bz2
yuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.tar.lz
yuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.tar.xz
yuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.tar.zst
yuzu-f4a3d282246406d44a391aafd8d494ff68669cfa.zip
Diffstat (limited to 'src/core/hle/service/hid/hid.h')
-rw-r--r--src/core/hle/service/hid/hid.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index a1d227dfe..f7621f62d 100644
--- a/src/core/hle/service/hid/hid.h
+++ b/src/core/hle/service/hid/hid.h
@@ -1,20 +1,19 @@
-// Copyright 2015 Citra Emulator Project
+// Copyright 2018 yuzu emulator team
// 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 HID {
-/// Initialize HID service
-void Init();
-
-/// Shutdown HID service
-void Shutdown();
-
/// Reload input devices. Used when input configuration changed
void ReloadInputDevices();
+/// Registers all HID services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager);
+
} // namespace HID
} // namespace Service