view src/scrobbler/plugin.h @ 3006:169f6ee38cad

Defining C functions in headers is awkward, move to the one C file that actually uses it.
author Tony Vroon <chainsaw@gentoo.org>
date Wed, 08 Apr 2009 22:30:45 +0100
parents ff9b4776b938
children
line wrap: on
line source

#ifndef PLUGIN_H
#define PLUGIN_H

#include <curl/curl.h>

void start(void);
void stop(void);
void setup_proxy(CURL *curl);

#endif