summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
authorGregory Mullen (grayhatter) <greg@grayhatter.com>2016-08-19 16:13:23 -0700
committerGregory Mullen (grayhatter) <greg@grayhatter.com>2016-08-19 16:13:23 -0700
commit0e18966a2703d67ac4647832fca595286d8e3568 (patch)
tree42920a5c4c26df8cd0afe72944250920008d257e /toxcore/tox.h
parent83d4857f080f6393ada976f3151bce5db2f96e23 (diff)
Make Typing change callback stateless
Moved a few #defines to the top of the header for better readability
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r--toxcore/tox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 1bb98a76..c2b14eec 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -1413,7 +1413,7 @@ typedef void tox_friend_typing_cb(Tox *tox, uint32_t friend_number, bool is_typi
1413 * 1413 *
1414 * This event is triggered when a friend starts or stops typing. 1414 * This event is triggered when a friend starts or stops typing.
1415 */ 1415 */
1416void tox_callback_friend_typing(Tox *tox, tox_friend_typing_cb *callback, void *user_data); 1416void tox_callback_friend_typing(Tox *tox, tox_friend_typing_cb *callback);
1417 1417
1418 1418
1419/******************************************************************************* 1419/*******************************************************************************