1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-19 19:45:15 +00:00
conky/src/hddtemp.h

21 lines
405 B
C
Raw Normal View History

/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
#ifndef HDDTEMP_H_
#define HDDTEMP_H_
#ifdef __cplusplus
extern "C" {
#endif
void set_hddtemp_host(const char *);
void set_hddtemp_port(const char *);
void update_hddtemp(void);
2009-11-08 03:18:19 +00:00
void free_hddtemp(struct text_object *);
2009-11-08 16:12:37 +00:00
void print_hddtemp(struct text_object *, char *, int);
#ifdef __cplusplus
}
#endif
#endif /*HDDTEMP_H_*/