You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
334 B
C

#pragma once
#include <time.h>
enum {
aptag_mention = 1,
aptag_emoji = 2,
};
struct ap_activity_tag
{
int type;
struct {
char* url;
int type;
} icon;
char* href;
char* id;
time_t updated;
char* name;
};
extern struct json_field_type ap_activity_tag_type;
void ap_activity_tag_free( struct ap_activity_tag* tag );