aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/gsp.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-16 00:03:41 -0400
committerbunnei <ericbunnie@gmail.com>2014-04-16 00:03:41 -0400
commit32c3462047d814eada8f3b80ee5ea2cd03936ae0 (patch)
tree9df4dd16c09f2b94e02e77b4818dc199e3323cc0 /src/core/hle/service/gsp.h
parentacef5e0b17e85bd25a5994d83b22d0ba02f589ba (diff)
- added stubbed out GSP::Gpu service interface
- various cleanups/refactors to HLE services
Diffstat (limited to 'src/core/hle/service/gsp.h')
-rw-r--r--src/core/hle/service/gsp.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/hle/service/gsp.h b/src/core/hle/service/gsp.h
new file mode 100644
index 000000000..0a9d452f6
--- /dev/null
+++ b/src/core/hle/service/gsp.h
@@ -0,0 +1,34 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace Service
+
+namespace GSP_GPU {
+
+class Interface : public Service::Interface {
+public:
+
+ Interface();
+
+ ~Interface();
+
+ /**
+ * Gets the string port name used by CTROS for the service
+ * @return Port name of service
+ */
+ std::string GetPortName() const {
+ return "gsp::Gpu";
+ }
+
+private:
+
+ DISALLOW_COPY_AND_ASSIGN(Interface);
+};
+
+} // namespace