aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/soundmanager.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/soundmanager.c b/src/soundmanager.c
index b46b6ff..bc7c6e8 100644
--- a/src/soundmanager.c
+++ b/src/soundmanager.c
@@ -138,7 +138,7 @@ static struct afb_event ev_async_set_source_state;
*
* This will be modified after integrating
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -213,7 +213,7 @@ static void connect (struct afb_req request)
* - sourceID : Source ID getting in return value in registerSource or appname.
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -267,7 +267,7 @@ static void disconnect (struct afb_req request)
* - volume : volume value. The range of value should be [0-100]
* - sinkID : sinkID you would like to change volume at
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -323,7 +323,7 @@ static void setVolume (struct afb_req request)
* - volumeStep : Step size of volume
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -379,7 +379,7 @@ static void volumeStep (struct afb_req request)
* - muteState : muteState, 1 means mute, 2 means unmute. Or you can designate as "mute" or "unmute"
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -434,7 +434,7 @@ static void setSinkMuteState(struct afb_req request)
* None
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message. Even if there is no connection list,
* Sound Manager return success.
*
@@ -507,7 +507,7 @@ static void getListMainConnections(struct afb_req request)
* None
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message. Even if there is no connection list,
* Sound Manager return success.
*
@@ -597,7 +597,7 @@ static void getListMainSinks(struct afb_req request)
* resources the application got in connect.
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message. Even if there is no connection list,
* Sound Manager return success. So you should check the contents size of return json object
*
@@ -659,7 +659,7 @@ static void ackConnect(struct afb_req request)
* If an application has some error, send error number in function then AM
*
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message. Even if there is no connection list,
* Sound Manager return success. So you should check the contents size of return json object
*
@@ -719,7 +719,7 @@ static void ackDisconnect(struct afb_req request)
* - error : Error Number you would like to send. If error is 0, it means OK.
* If an application has some errors, send error number in function
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -898,7 +898,7 @@ static void registerSource(struct afb_req request)
* #### Parameters
* - sourceID : sourceID returned in resisterSource
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -940,7 +940,7 @@ static void deregisterSource(struct afb_req request)
* #### Parameters
* - event : Event name. Event list is written in libsoundmanager.hpp
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note
@@ -989,7 +989,7 @@ static void subscribe(struct afb_req request)
* #### Parameters
* - event : Event name. Event list is written in libsoundmanager.hpp
*
- * #### Rreturn
+ * #### Return
* - error : Error status number. If error is 0, it means the request is accepted, otherwise error message is attached with error code in reply message.
*
* #### Note