mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Fixed an api inconsistency.
This commit is contained in:
parent
d013673366
commit
2e48b31e47
|
@ -52,7 +52,7 @@ void print_nickchange(Tox *m, int friendnumber, uint8_t *string, uint16_t length
|
|||
|
||||
uint32_t typing_changes;
|
||||
|
||||
void print_typingchange(Tox *m, int friendnumber, int typing, void *userdata)
|
||||
void print_typingchange(Tox *m, int friendnumber, uint8_t typing, void *userdata)
|
||||
{
|
||||
if (*((uint32_t *)userdata) != 974536)
|
||||
return;
|
||||
|
|
|
@ -772,7 +772,7 @@ void m_callback_userstatus(Messenger *m, void (*function)(Messenger *m, int32_t,
|
|||
m->friend_userstatuschange_userdata = userdata;
|
||||
}
|
||||
|
||||
void m_callback_typingchange(Messenger *m, void(*function)(Messenger *m, int32_t, int, void *), void *userdata)
|
||||
void m_callback_typingchange(Messenger *m, void(*function)(Messenger *m, int32_t, uint8_t, void *), void *userdata)
|
||||
{
|
||||
m->friend_typingchange = function;
|
||||
m->friend_typingchange_userdata = userdata;
|
||||
|
|
|
@ -208,7 +208,7 @@ typedef struct Messenger {
|
|||
void *friend_statusmessagechange_userdata;
|
||||
void (*friend_userstatuschange)(struct Messenger *m, int32_t, uint8_t, void *);
|
||||
void *friend_userstatuschange_userdata;
|
||||
void (*friend_typingchange)(struct Messenger *m, int32_t, int, void *);
|
||||
void (*friend_typingchange)(struct Messenger *m, int32_t, uint8_t, void *);
|
||||
void *friend_typingchange_userdata;
|
||||
void (*read_receipt)(struct Messenger *m, int32_t, uint32_t, void *);
|
||||
void *read_receipt_userdata;
|
||||
|
@ -478,9 +478,9 @@ void m_callback_statusmessage(Messenger *m, void (*function)(Messenger *m, int32
|
|||
void m_callback_userstatus(Messenger *m, void (*function)(Messenger *m, int32_t, uint8_t, void *), void *userdata);
|
||||
|
||||
/* Set the callback for typing changes.
|
||||
* Function(int32_t friendnumber, int is_typing)
|
||||
* Function(int32_t friendnumber, uint8_t is_typing)
|
||||
*/
|
||||
void m_callback_typingchange(Messenger *m, void(*function)(Messenger *m, int32_t, int, void *), void *userdata);
|
||||
void m_callback_typingchange(Messenger *m, void(*function)(Messenger *m, int32_t, uint8_t, void *), void *userdata);
|
||||
|
||||
/* Set the callback for read receipts.
|
||||
* Function(int32_t friendnumber, uint32_t receipt)
|
||||
|
|
|
@ -422,9 +422,9 @@ void tox_callback_user_status(Tox *tox, void (*function)(Messenger *tox, int32_t
|
|||
}
|
||||
|
||||
/* Set the callback for typing changes.
|
||||
* function (int32_t friendnumber, int is_typing)
|
||||
* function (int32_t friendnumber, uint8_t is_typing)
|
||||
*/
|
||||
void tox_callback_typing_change(Tox *tox, void (*function)(Messenger *tox, int32_t, int, void *), void *userdata)
|
||||
void tox_callback_typing_change(Tox *tox, void (*function)(Messenger *tox, int32_t, uint8_t, void *), void *userdata)
|
||||
{
|
||||
Messenger *m = tox;
|
||||
m_callback_typingchange(m, function, userdata);
|
||||
|
|
|
@ -342,9 +342,9 @@ void tox_callback_status_message(Tox *tox, void (*function)(Tox *tox, int32_t, u
|
|||
void tox_callback_user_status(Tox *tox, void (*function)(Tox *tox, int32_t, uint8_t, void *), void *userdata);
|
||||
|
||||
/* Set the callback for typing changes.
|
||||
* function (Tox *tox, int32_t friendnumber, int is_typing, void *userdata)
|
||||
* function (Tox *tox, int32_t friendnumber, uint8_t is_typing, void *userdata)
|
||||
*/
|
||||
void tox_callback_typing_change(Tox *tox, void (*function)(Tox *tox, int32_t, int, void *), void *userdata);
|
||||
void tox_callback_typing_change(Tox *tox, void (*function)(Tox *tox, int32_t, uint8_t, void *), void *userdata);
|
||||
|
||||
/* Set the callback for read receipts.
|
||||
* function(Tox *tox, int32_t friendnumber, uint32_t receipt, void *userdata)
|
||||
|
|
Loading…
Reference in New Issue
Block a user