forked from cory/tildefriends
Reworked some following math.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4601 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
13
src/ssb.db.h
13
src/ssb.db.h
@ -46,7 +46,18 @@ JSValue tf_ssb_format_message(
|
||||
const char* content,
|
||||
const char* signature,
|
||||
bool sequence_before_author);
|
||||
const char** tf_ssb_db_following_deep(tf_ssb_t* ssb, const char** ids, int count, int depth);
|
||||
|
||||
typedef struct _tf_ssb_following_t
|
||||
{
|
||||
char id[k_id_base64_len];
|
||||
int following_count;
|
||||
int blocking_count;
|
||||
int followed_by_count;
|
||||
int blocked_by_count;
|
||||
} tf_ssb_following_t;
|
||||
|
||||
const char** tf_ssb_db_following_deep_ids(tf_ssb_t* ssb, const char** ids, int count, int depth);
|
||||
tf_ssb_following_t* tf_ssb_db_following_deep(tf_ssb_t* ssb, const char** ids, int count, int depth);
|
||||
const char** tf_ssb_db_get_all_visible_identities(tf_ssb_t* ssb, int depth);
|
||||
|
||||
typedef struct _tf_ssb_db_stored_connection_t
|
||||
|
Reference in New Issue
Block a user