mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
style: adjust function arg names in header to changes in core.cpp
This commit is contained in:
parent
12c21b21d2
commit
4bcf57b236
|
@ -213,14 +213,14 @@ private:
|
|||
static void onConnectionStatusChanged(Tox* tox, uint32_t friendId,
|
||||
TOX_CONNECTION status, void* core);
|
||||
static void onGroupInvite(Tox* tox, uint32_t friendId, TOX_CONFERENCE_TYPE type,
|
||||
const uint8_t* data, size_t length, void* core);
|
||||
const uint8_t* data, size_t length, void* vCore);
|
||||
static void onGroupMessage(Tox* tox, uint32_t groupId, uint32_t peerId,
|
||||
TOX_MESSAGE_TYPE type, const uint8_t* message,
|
||||
size_t length, void* core);
|
||||
TOX_MESSAGE_TYPE type, const uint8_t* cMessage,
|
||||
size_t length, void* vCore);
|
||||
static void onGroupNamelistChange(Tox* tox, uint32_t groupId, uint32_t peerId,
|
||||
TOX_CONFERENCE_STATE_CHANGE change, void* core);
|
||||
static void onGroupTitleChange(Tox* tox, uint32_t groupId, uint32_t peerId,
|
||||
const uint8_t* title, size_t length, void* core);
|
||||
const uint8_t* cTitle, size_t length, void* vCore);
|
||||
static void onReadReceiptCallback(Tox* tox, uint32_t friendId,
|
||||
uint32_t receipt, void* core);
|
||||
|
||||
|
|
|
@ -62,14 +62,19 @@ private:
|
|||
}
|
||||
|
||||
private:
|
||||
static void onFileReceiveCallback(Tox*, uint32_t friendnumber, uint32_t fileId, uint32_t kind,
|
||||
uint64_t filesize, const uint8_t *fname, size_t fnameLen, void *core);
|
||||
static void onFileControlCallback(Tox *tox, uint32_t friendId, uint32_t fileId,
|
||||
TOX_FILE_CONTROL control, void *core);
|
||||
static void onFileReceiveCallback(Tox*, uint32_t friendId, uint32_t fileId,
|
||||
uint32_t kind, uint64_t filesize,
|
||||
const uint8_t* fname, size_t fnameLen,
|
||||
void *vCore);
|
||||
static void onFileControlCallback(Tox *tox, uint32_t friendId,
|
||||
uint32_t fileId, TOX_FILE_CONTROL control,
|
||||
void *core);
|
||||
static void onFileDataCallback(Tox *tox, uint32_t friendId, uint32_t fileId,
|
||||
uint64_t pos, size_t length, void *core);
|
||||
static void onFileRecvChunkCallback(Tox *tox, uint32_t friendId, uint32_t fileId, uint64_t position,
|
||||
const uint8_t *data, size_t length, void *core);
|
||||
static void onFileRecvChunkCallback(Tox *tox, uint32_t friendId,
|
||||
uint32_t fileId, uint64_t position,
|
||||
const uint8_t* data, size_t length,
|
||||
void *vCore);
|
||||
static void onConnectionStatusChanged(Core* core, uint32_t friendId, bool online);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue
Block a user