This commit is contained in:
irungentoo 2014-10-07 16:30:01 -04:00
commit 3df5401186
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98

View File

@ -24,6 +24,10 @@
#ifndef TOXDNS_H
#define TOXDNS_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
/* Clients are encouraged to set this as the maximum length names can have. */
@ -85,4 +89,8 @@ int tox_generate_dns3_string(void *dns3_object, uint8_t *string, uint16_t string
int tox_decrypt_dns3_TXT(void *dns3_object, uint8_t *tox_id, uint8_t *id_record, uint32_t id_record_len,
uint32_t request_id);
#ifdef __cplusplus
}
#endif
#endif