File: ascpu_x.h

package info (click to toggle)
ascpu 1.9-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 280 kB
  • ctags: 126
  • sloc: ansic: 1,219; sh: 183; makefile: 51
file content (33 lines) | stat: -rw-r--r-- 838 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * ascpu is the CPU statistics monitor utility for X Windows
 * Copyright (c) 1998-2000  Albert Dorofeev <Albert@tigr.net>
 * For the updates see http://www.tigr.net/
 *
 * This software is distributed under GPL. For details see LICENSE file.
 */

#ifndef _ascpu_x_h_
#define _ascpu_x_h_

void ascpu_initialize(  
                        int argc, char** argv,
			char * window_name,
                        char * display_name,
			char * mainGeometry,
                        int withdrawn,
                        int iconic,
                        int pushed_in,
			int sys_color_defined,
			char * sys_color,
			int nice_color_defined,
			char * nice_color,
			int user_color_defined,
			char * user_color,
			int idle_color_defined,
			char * idle_color);
void ascpu_update();
void ascpu_redraw();
void ascpu_cleanup();

#endif