mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-19 19:45:15 +00:00
610b0b628d
In order to do this correctly: Removed duplicate includes Fixed mpd functions to accept mpd_s instead of information Freed mpd.h of any need to include conky.h (mpd.c still includes it for the constants) git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1154 7f574dfc-610e-0410-a909-a81674777703
11 lines
163 B
C
11 lines
163 B
C
#ifndef RSS_H_
|
|
#define RSS_H_
|
|
|
|
#include "prss.h"
|
|
|
|
PRSS *get_rss_info(char *uri, int delay);
|
|
void init_rss_info(void);
|
|
void free_rss_info(void);
|
|
|
|
#endif /*RSS_H_*/
|