summaryrefslogtreecommitdiff
path: root/multiload/cpuload.h
blob: 3b6adde7b25943730c589e9f459425aa48d8ae36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CPULOAD_H__
#define CPULOAD_H__

typedef struct _Cpuload Cpuload;
struct _Cpuload {
	GtkWidget *frame, *disp;
	GdkPixmap *pixmap;
	GdkGC *gc;
	GdkColor ucolor, scolor;
	int timer_index;
};

void cpuload_setup_colors (Cpuload *cpuload);
void cpuload_start_timer (Cpuload *cpuload);

#endif