1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00
conky/src/openbsd.h
2010-02-25 21:50:50 +01:00

27 lines
851 B
C

/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
#ifndef OPENBSD_H_
#define OPENBSD_H_
#include "common.h"
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/sensors.h>
#include <machine/apmvar.h>
void parse_obsd_sensor(struct text_object *, const char *);
void print_obsd_sensors_temp(struct text_object *, char *, int);
void print_obsd_sensors_fan(struct text_object *, char *, int);
void print_obsd_sensors_volt(struct text_object *, char *, int);
void get_obsd_vendor(struct text_object *, char *buf, size_t client_buffer_size);
void get_obsd_product(struct text_object *, char *buf, size_t client_buffer_size);
#if defined(i386) || defined(__i386__)
typedef struct apm_power_info *apm_info_t;
#endif
int get_entropy_avail(unsigned int *);
int get_entropy_poolsize(unsigned int *);
#endif /*OPENBSD_H_*/