2009-07-28 21:44:22 +00:00
|
|
|
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
|
|
|
|
2008-06-14 18:41:12 +00:00
|
|
|
#ifndef HDDTEMP_H_
|
|
|
|
#define HDDTEMP_H_
|
|
|
|
|
2009-12-10 04:05:32 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-09-06 19:53:53 +00:00
|
|
|
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);
|
2008-06-14 18:41:12 +00:00
|
|
|
|
2009-12-10 04:05:32 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-06-14 18:41:12 +00:00
|
|
|
#endif /*HDDTEMP_H_*/
|