Plugin.hpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #pragma once
  2. #include "../include/Body.hpp"
  3. #include "../include/DownloadUtils.hpp"
  4. #include <stddef.h>
  5. namespace QuickMedia {
  6. enum class PluginResult {
  7. OK,
  8. ERR,
  9. NET_ERR
  10. };
  11. enum class SearchResult {
  12. OK,
  13. ERR,
  14. NET_ERR
  15. };
  16. enum class SuggestionResult {
  17. OK,
  18. ERR,
  19. NET_ERR
  20. };
  21. enum class ImageResult {
  22. OK,
  23. END,
  24. ERR,
  25. NET_ERR
  26. };
  27. struct BodyItemContext {
  28. BodyItems *body_items;
  29. size_t index;
  30. };
  31. SuggestionResult download_result_to_suggestion_result(DownloadResult download_result);
  32. PluginResult download_result_to_plugin_result(DownloadResult download_result);
  33. SearchResult download_result_to_search_result(DownloadResult download_result);
  34. ImageResult download_result_to_image_result(DownloadResult download_result);
  35. PluginResult search_result_to_plugin_result(SearchResult search_result);
  36. SearchResult plugin_result_to_search_result(PluginResult plugin_result);
  37. }