mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-16 12:10:31 +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
18 lines
268 B
C
18 lines
268 B
C
#ifndef MAIL_H_
|
|
#define MAIL_H_
|
|
|
|
extern char *current_mail_spool;
|
|
|
|
struct local_mail_s {
|
|
char *box;
|
|
int mail_count;
|
|
int new_mail_count;
|
|
float interval;
|
|
time_t last_mtime;
|
|
double last_update;
|
|
};
|
|
|
|
void update_mail_count(struct local_mail_s *);
|
|
|
|
#endif /*MAIL_H_*/
|