#pragma once #include "app_context.h" #include #ifdef __cplusplus extern "C" { #endif // Raw download to file with progress tracking bool dl_ep_raw(EpInfo* ep); bool dl_ep(EpInfo* ep); // Download task void dl_task(void* arg); // Download overlay UI void hide_dl_overlay(void); void show_dl_overlay_locked(const char* ep_title, const char* slug, int season, int ep_num); void update_dl_overlay_ui(void); #ifdef __cplusplus } #endif