diff options
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r-- | toxcore/tox.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h index faf4e559..a5e79d63 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h | |||
@@ -1833,6 +1833,14 @@ void tox_callback_friend_message(Tox *tox, tox_friend_message_cb *callback); | |||
1833 | */ | 1833 | */ |
1834 | bool tox_hash(uint8_t *hash, const uint8_t *data, size_t length); | 1834 | bool tox_hash(uint8_t *hash, const uint8_t *data, size_t length); |
1835 | 1835 | ||
1836 | /** | ||
1837 | * A list of pre-defined file kinds. Toxcore itself does not behave | ||
1838 | * differently for different file kinds. These are a hint to the client | ||
1839 | * telling it what use the sender intended for the file. The `kind` parameter | ||
1840 | * in the send function and recv callback are `uint32_t`, not TOX_FILE_KIND, because | ||
1841 | * clients can invent their own file kind. Unknown file kinds should be | ||
1842 | * treated as TOX_FILE_KIND_DATA. | ||
1843 | */ | ||
1836 | enum TOX_FILE_KIND { | 1844 | enum TOX_FILE_KIND { |
1837 | 1845 | ||
1838 | /** | 1846 | /** |
@@ -2295,7 +2303,7 @@ void tox_callback_file_chunk_request(Tox *tox, tox_file_chunk_request_cb *callba | |||
2295 | * transfer request. | 2303 | * transfer request. |
2296 | * @param file_number The friend-specific file number the data received is | 2304 | * @param file_number The friend-specific file number the data received is |
2297 | * associated with. | 2305 | * associated with. |
2298 | * @param kind The meaning of the file to be sent. | 2306 | * @param kind The meaning of the file that was sent. |
2299 | * @param file_size Size in bytes of the file the client wants to send, | 2307 | * @param file_size Size in bytes of the file the client wants to send, |
2300 | * UINT64_MAX if unknown or streaming. | 2308 | * UINT64_MAX if unknown or streaming. |
2301 | * @param filename Name of the file. Does not need to be the actual name. This | 2309 | * @param filename Name of the file. Does not need to be the actual name. This |