summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/arp/arp.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-04 23:54:54 +0200
committerLioncash <mathew1800@gmail.com>2018-08-05 00:01:12 +0200
commitde7295618182135e11fa968feba79b8a6b72f0b3 (patch)
tree517b07405c3d6d134e7ca6adf733b91e5e999dc9 /src/core/hle/service/arp/arp.h
parentMerge pull request #849 from DarkLordZach/xci (diff)
downloadyuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.gz
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.bz2
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.lz
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.xz
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.zst
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/arp/arp.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/arp/arp.h b/src/core/hle/service/arp/arp.h
new file mode 100644
index 000000000..9d100187c
--- /dev/null
+++ b/src/core/hle/service/arp/arp.h
@@ -0,0 +1,16 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::ARP {
+
+/// Registers all ARP services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& sm);
+
+} // namespace Service::ARP