Fix stubs and move some tests to http_common

This commit is contained in:
William Wennerström
2020-07-21 13:11:50 +02:00
parent be62b446f7
commit 1bb6cecee6
10 changed files with 23 additions and 48 deletions

View File

@@ -15,9 +15,13 @@ typedef struct aesgcm_download_t
HTTPDownload* http_dl;
} AESGCMDownload;
void* aesgcm_file_get(void* userdata);
void*
aesgcm_file_get(void* userdata)
{
return NULL;
};
void aesgcm_download_cancel_processes(ProfWin* window);
void aesgcm_download_add_download(AESGCMDownload* download);
void aesgcm_download_cancel_processes(ProfWin* window){};
void aesgcm_download_add_download(AESGCMDownload* download){};
#endif