/* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef MASTODONT_NOTIFICATION #define MASTODONT_NOTIFICATION #include "mastodont_types.h" #include enum mstdnt_notification_type { MSTDNT_NOTIFICATION_FOLLOW, MSTDNT_NOTIFICATION_FOLLOW_REQUEST, MSTDNT_NOTIFICATION_MENTION, MSTDNT_NOTIFICATION_REBLOG, MSTDNT_NOTIFICATION_FAVOURITE, MSTDNT_NOTIFICATION_POLL, MSTDNT_NOTIFICATION_STATUS, MSTDNT_NOTIFICATION_EMOJI_REACT, MSTDNT_NOTIFICATION_CHAT_MENTION, MSTDNT_NOTIFICATION_REPORT }; struct mstdnt_notification { char* id; enum mstdnt_notification_type type; }; int mastodont_notifications(mastodont_t* data, struct mstdnt_notification** notifs, struct mstdnt_storage* storage, size_t* size); int mstdnt_load_account_from_json(struct mstdnt_notification* notif, cJSON* js); void _mstdnt_val_notifications_call(cJSON* v, void* _type); #endif /* MASTODONT_NOTIFICATION */