aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-16 20:46:05 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-16 20:46:05 -0400
commitb8851305bd9840c55a50ca386630f59166ae9578 (patch)
tree2775257c33901fa3773f8f6604ee59bfe7d6768a
parentde3dcd38f6572da88a67e625e6aa98c2a2f786d7 (diff)
updated service comments
-rw-r--r--src/core/hle/service/apt.cpp3
-rw-r--r--src/core/hle/service/apt.h3
-rw-r--r--src/core/hle/service/gsp.cpp3
-rw-r--r--src/core/hle/service/gsp.h3
-rw-r--r--src/core/hle/service/srv.cpp3
-rw-r--r--src/core/hle/service/srv.h7
6 files changed, 17 insertions, 5 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp
index e5c9dd87..4f8d7248 100644
--- a/src/core/hle/service/apt.cpp
+++ b/src/core/hle/service/apt.cpp
@@ -8,6 +8,9 @@
#include "core/hle/hle.h"
#include "core/hle/service/apt.h"
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace APT_U
+
namespace APT_U {
void Initialize() {
diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h
index 9345eabc..e74baac0 100644
--- a/src/core/hle/service/apt.h
+++ b/src/core/hle/service/apt.h
@@ -7,7 +7,7 @@
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace Service
+// Namespace APT_U
namespace APT_U {
@@ -17,6 +17,7 @@ namespace APT_U {
// exactly the same, however certain commands are only accessible with APT:S(NS module will call
// svcBreak when the command isn't accessible). See http://3dbrew.org/wiki/NS#APT_Services.
+/// Interface to "APT:U" service
class Interface : public Service::Interface {
public:
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index 6dfd76de..7c80ab8b 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -8,6 +8,9 @@
#include "core/hle/hle.h"
#include "core/hle/service/gsp.h"
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace GSP_GPU
+
namespace GSP_GPU {
const HLE::FunctionDef FunctionTable[] = {
diff --git a/src/core/hle/service/gsp.h b/src/core/hle/service/gsp.h
index 0a9d452f..3b184608 100644
--- a/src/core/hle/service/gsp.h
+++ b/src/core/hle/service/gsp.h
@@ -7,10 +7,11 @@
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace Service
+// Namespace GSP_GPU
namespace GSP_GPU {
+/// Interface to "srv:" service
class Interface : public Service::Interface {
public:
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index ad744846..1ec78dd1 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -7,6 +7,9 @@
#include "core/hle/service/service.h"
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace SRV
+
namespace SRV {
void Initialize() {
diff --git a/src/core/hle/service/srv.h b/src/core/hle/service/srv.h
index a1d26a34..d9ac8fc8 100644
--- a/src/core/hle/service/srv.h
+++ b/src/core/hle/service/srv.h
@@ -4,11 +4,12 @@
#include "core/hle/service/service.h"
-namespace SRV {
-
////////////////////////////////////////////////////////////////////////////////////////////////////
-// Interface to "SRV" service
+// Namespace SRV
+
+namespace SRV {
+/// Interface to "srv:" service
class Interface : public Service::Interface {
public: