diff options
author | nirav <nirav@teisuu.com> | 2019-03-28 09:10:52 +0530 |
---|---|---|
committer | nirav <nirav@teisuu.com> | 2019-03-28 09:10:52 +0530 |
commit | 477e1ba2977435ae7bb75c7dbd95cf28247f89bd (patch) | |
tree | ce1f9719a7d11bbd47e9adea26dd610bc087962e /src/instance_info.h | |
parent | cc727e972f7fdc871ee1f42cf014151b67422bf0 (diff) | |
download | ap_client-477e1ba2977435ae7bb75c7dbd95cf28247f89bd.tar.gz ap_client-477e1ba2977435ae7bb75c7dbd95cf28247f89bd.zip |
Diffstat (limited to 'src/instance_info.h')
-rw-r--r-- | src/instance_info.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/instance_info.h b/src/instance_info.h deleted file mode 100644 index 72a5bbb..0000000 --- a/src/instance_info.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef __INSTANCE_INFO_H -#define __INSTANCE_INFO_H - -#include <stdbool.h> - -struct instance_info_urls { - char *streaming_api; -}; - -struct instance_info_stats { - int user_count; - int status_count; - int domain_count; -}; - -struct instance_info { - char *url; - char *title; - char *description; - char *email; - char *version; - struct instance_info_urls urls; - struct instance_info_stats states; - char *thumbnail; - char **languages; - bool registrations; -}; - -struct instance_info *instance_info_from_json(char *json_data); - -#endif |