flip_social_messages.h 897 B

1234567891011121314151617181920212223
  1. #ifndef FLIP_SOCIAL_MESSAGES_H
  2. #define FLIP_SOCIAL_MESSAGES_H
  3. #include "flip_social.h"
  4. #include <callback/callback.h>
  5. #include <explore/flip_social_explore.h>
  6. bool flip_social_update_messages_submenu();
  7. bool flip_social_update_submenu_user_choices();
  8. // Get all the users that have sent messages to the logged in user
  9. bool flip_social_get_message_users(FlipperHTTP *fhttp);
  10. // Get all the messages between the logged in user and the selected user
  11. bool flip_social_get_messages_with_user(FlipperHTTP *fhttp);
  12. // Parse the users that have sent messages to the logged-in user
  13. bool flip_social_parse_json_message_users(FlipperHTTP *fhttp);
  14. // Parse the users that the logged in user can message
  15. bool flip_social_parse_json_message_user_choices(FlipperHTTP *fhttp);
  16. // parse messages between the logged in user and the selected user
  17. bool flip_social_parse_json_messages(FlipperHTTP *fhttp);
  18. #endif