summaryrefslogtreecommitdiff
path: root/toxcore/Messenger.h
diff options
context:
space:
mode:
authormichael bishop <cleverca22@gmail.com>2016-09-12 11:36:49 -0300
committerAnsa89 <ansalonistefano@gmail.com>2017-04-01 17:47:34 +0200
commit200ee1cace2f17537e6982ac447ea65d7c7a00b3 (patch)
tree5c3cdfd8be52b9b621d859eed877c38d88314f08 /toxcore/Messenger.h
parent124d9e0446856002d9d19abddae12107345d67bc (diff)
initial version of tox_loop
Diffstat (limited to 'toxcore/Messenger.h')
-rw-r--r--toxcore/Messenger.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/toxcore/Messenger.h b/toxcore/Messenger.h
index e1dba698..7275ffbf 100644
--- a/toxcore/Messenger.h
+++ b/toxcore/Messenger.h
@@ -273,6 +273,10 @@ struct Messenger {
273 void (*core_connection_change)(struct Messenger *m, unsigned int, void *); 273 void (*core_connection_change)(struct Messenger *m, unsigned int, void *);
274 unsigned int last_connection_status; 274 unsigned int last_connection_status;
275 275
276 uint8_t loop_run;
277 void (*loop_begin_cb)(struct Messenger *tox, void *user_data);
278 void (*loop_end_cb)(struct Messenger *tox, void *user_data);
279
276 Messenger_Options options; 280 Messenger_Options options;
277}; 281};
278 282