flip_social_alloc.h 466 B

1234567891011121314
  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. #include <draw/flip_social_draw.h>
  7. /**
  8. * @brief Function to allocate resources for the FlipSocialApp.
  9. * @details Initializes all components and views of the application.
  10. * @return Pointer to the initialized FlipSocialApp, or NULL on failure.
  11. */
  12. FlipSocialApp *flip_social_app_alloc();
  13. #endif