summaryrefslogtreecommitdiff
path: root/toxcore/Messenger.h
diff options
context:
space:
mode:
authorGregory Mullen (grayhatter) <greg@grayhatter.com>2016-12-03 11:46:15 -0800
committerGregory Mullen (grayhatter) <greg@grayhatter.com>2016-12-03 13:21:27 -0800
commitd66b3eabd5a243d8389dcdb9a091f1d4814315d2 (patch)
treed298cb29d2dde8d219bf41968b45ee5082d81c6e /toxcore/Messenger.h
parentf0f53dbd5565cbedac30efbfd18202d55d028d1e (diff)
rename messenger function, prepend m_
Diffstat (limited to 'toxcore/Messenger.h')
-rw-r--r--toxcore/Messenger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/Messenger.h b/toxcore/Messenger.h
index 8f9a83a9..9bc4c451 100644
--- a/toxcore/Messenger.h
+++ b/toxcore/Messenger.h
@@ -697,7 +697,7 @@ void custom_lossy_packet_registerhandler(Messenger *m, void (*packet_handler_cal
697 * return -5 if packet failed to send because of other error. 697 * return -5 if packet failed to send because of other error.
698 * return 0 on success. 698 * return 0 on success.
699 */ 699 */
700int send_custom_lossy_packet(const Messenger *m, int32_t friendnumber, const uint8_t *data, uint32_t length); 700int m_send_custom_lossy_packet(const Messenger *m, int32_t friendnumber, const uint8_t *data, uint32_t length);
701 701
702 702
703/* Set handlers for custom lossless packets. 703/* Set handlers for custom lossless packets.