about summary refs log tree commit diff stats
path: root/tests/unittests/tools/stub_plugin_download.c
blob: c54f60d2a760918dc9fb0d2c5688f45b28e8f7ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef TOOLS_PLUGIN_DOWNLOAD_H
#define TOOLS_PLUGIN_DOWNLOAD_H

#include <stdlib.h>
typedef struct prof_win_t ProfWin;
typedef struct http_download_t HTTPDownload;

void*
plugin_download_install(void* userdata)
{
    return NULL;
}

void
plugin_download_add_download(HTTPDownload* download)
{
}

#endif