mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
5a3b7c074b
Instead of connecting once for each object, have a central update routine (limiting support to only a single hddtemp daemon to connect to).
13 lines
318 B
C
13 lines
318 B
C
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
|
|
|
#ifndef HDDTEMP_H_
|
|
#define HDDTEMP_H_
|
|
|
|
void set_hddtemp_host(const char *);
|
|
void set_hddtemp_port(const char *);
|
|
void update_hddtemp(void);
|
|
void free_hddtemp(void);
|
|
int get_hddtemp_info(const char *, short *, char *);
|
|
|
|
#endif /*HDDTEMP_H_*/
|