mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
16 lines
487 B
C
16 lines
487 B
C
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
|
|
|
#ifndef _IBM_H
|
|
#define _IBM_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
void get_ibm_acpi_fan(struct text_object *, char *, int);
|
|
void get_ibm_acpi_temps(void);
|
|
void get_ibm_acpi_volume(struct text_object *, char *, int);
|
|
void get_ibm_acpi_brightness(struct text_object *, char *, int);
|
|
|
|
void parse_ibm_temps_arg(struct text_object *, const char *);
|
|
void print_ibm_temps(struct text_object *, char *, int);
|
|
#endif /* _IBM_H */
|