summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ro/ro.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-09 03:10:42 +0100
committerLiam <byteslice@airmail.cc>2023-12-09 21:50:34 +0100
commit7ba4a8f4a305a8f5136cd745b73c30becdf7c975 (patch)
tree88298437cb75a1c383393bbda37fd605c30c1db6 /src/core/hle/service/ro/ro.h
parentservice: populate pid and handle table from client (diff)
downloadyuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.tar
yuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.tar.gz
yuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.tar.bz2
yuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.tar.lz
yuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.tar.xz
yuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.tar.zst
yuzu-7ba4a8f4a305a8f5136cd745b73c30becdf7c975.zip
Diffstat (limited to 'src/core/hle/service/ro/ro.h')
-rw-r--r--src/core/hle/service/ro/ro.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/hle/service/ro/ro.h b/src/core/hle/service/ro/ro.h
new file mode 100644
index 000000000..74dc08536
--- /dev/null
+++ b/src/core/hle/service/ro/ro.h
@@ -0,0 +1,14 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+namespace Core {
+class System;
+}
+
+namespace Service::RO {
+
+void LoopProcess(Core::System& system);
+
+} // namespace Service::RO