flip_social_alloc.h 431 B

12345678910111213
  1. #ifndef FLIP_SOCIAL_ALLOC_H
  2. #define FLIP_SOCIAL_ALLOC_H
  3. #include <flip_social.h>
  4. #include <callback/flip_social_callback.h>
  5. #include <flip_storage/flip_social_storage.h>
  6. /**
  7. * @brief Function to allocate resources for the FlipSocialApp.
  8. * @details Initializes all components and views of the application.
  9. * @return Pointer to the initialized FlipSocialApp, or NULL on failure.
  10. */
  11. FlipSocialApp *flip_social_app_alloc();
  12. #endif