Add stubs

This commit is contained in:
William Wennerström
2020-07-21 11:36:09 +02:00
parent ab83afe21b
commit be62b446f7
5 changed files with 55 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
#ifndef TOOLS_HTTP_COMMON_H
#define TOOLS_HTTP_COMMON_H
typedef struct prof_win_t ProfWin;
char*
http_basename_from_url(const char* url)
{
return "";
}
void http_print_transfer(ProfWin* window, char* url, const char* fmt, ...);
void http_print_transfer_update(ProfWin* window, char* url,
const char* fmt, ...);
#endif