summaryrefslogtreecommitdiff
path: root/other/apidsl
diff options
context:
space:
mode:
authorJfreegman <jfreegman@gmail.com>2016-09-19 11:30:36 -0400
committerJfreegman <jfreegman@gmail.com>2016-09-21 15:33:55 -0400
commitdd2965a58f8ec95bd61c1a2c8812bd46b83f414c (patch)
tree3b128f36518ced6ea670302e333bb11aca64ab74 /other/apidsl
parente59fd26d4987050e474a6de27dd503f32cc7820a (diff)
Make group callbacks stateless
Diffstat (limited to 'other/apidsl')
-rw-r--r--other/apidsl/tox.in.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/other/apidsl/tox.in.h b/other/apidsl/tox.in.h
index f3a06623..dfc658d5 100644
--- a/other/apidsl/tox.in.h
+++ b/other/apidsl/tox.in.h
@@ -2040,7 +2040,7 @@ namespace conference {
2040 /** 2040 /**
2041 * This event is triggered when the client is invited to join a conference. 2041 * This event is triggered when the client is invited to join a conference.
2042 */ 2042 */
2043 event invite { 2043 event invite const {
2044 /** 2044 /**
2045 * The invitation will remain valid until the inviting friend goes offline 2045 * The invitation will remain valid until the inviting friend goes offline
2046 * or exits the conference. 2046 * or exits the conference.
@@ -2058,7 +2058,7 @@ namespace conference {
2058 /** 2058 /**
2059 * This event is triggered when the client receives a conference message. 2059 * This event is triggered when the client receives a conference message.
2060 */ 2060 */
2061 event message { 2061 event message const {
2062 /** 2062 /**
2063 * @param conference_number The conference number of the conference the message is intended for. 2063 * @param conference_number The conference number of the conference the message is intended for.
2064 * @param peer_number The ID of the peer who sent the message. 2064 * @param peer_number The ID of the peer who sent the message.
@@ -2076,7 +2076,7 @@ namespace conference {
2076 * 2076 *
2077 * If peer_number == UINT32_MAX, then author is unknown (e.g. initial joining the conference). 2077 * If peer_number == UINT32_MAX, then author is unknown (e.g. initial joining the conference).
2078 */ 2078 */
2079 event title { 2079 event title const {
2080 /** 2080 /**
2081 * @param conference_number The conference number of the conference the title change is intended for. 2081 * @param conference_number The conference number of the conference the title change is intended for.
2082 * @param peer_number The ID of the peer who changed the title. 2082 * @param peer_number The ID of the peer who changed the title.
@@ -2107,7 +2107,7 @@ namespace conference {
2107 /** 2107 /**
2108 * This event is triggered when the peer list changes (name change, peer join, peer exit). 2108 * This event is triggered when the peer list changes (name change, peer join, peer exit).
2109 */ 2109 */
2110 event namelist_change { 2110 event namelist_change const {
2111 /** 2111 /**
2112 * @param conference_number The conference number of the conference the title change is intended for. 2112 * @param conference_number The conference number of the conference the title change is intended for.
2113 * @param peer_number The ID of the peer who changed the title. 2113 * @param peer_number The ID of the peer who changed the title.