~ubuntu-branches/ubuntu/hoary/htop/hoary

« back to all changes in this revision

Viewing changes to TasksMeter.h

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2004-11-27 10:10:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041127101017-vwknw2ipfvxchno4
Tags: 0.5-1
* New upstream version.
  - fixes problem with wrongly displayed CPU bar (Closes: #283212)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Do not edit this file. It was automatically genarated. */
 
2
 
 
3
#ifndef HEADER_TasksMeter
 
4
#define HEADER_TasksMeter
 
5
/*
 
6
htop
 
7
(C) 2004 Hisham H. Muhammad
 
8
Released under the GNU GPL, see the COPYING file
 
9
in the source distribution for its full text.
 
10
*/
 
11
 
 
12
#include "Meter.h"
 
13
 
 
14
#include "ProcessList.h"
 
15
 
 
16
#include "CRT.h"
 
17
 
 
18
#include "debug.h"
 
19
 
 
20
 
 
21
typedef struct TasksMeter_ TasksMeter;
 
22
 
 
23
struct TasksMeter_ {
 
24
   Meter super;
 
25
   ProcessList* pl;
 
26
};
 
27
 
 
28
 
 
29
TasksMeter* TasksMeter_new(ProcessList* pl);
 
30
 
 
31
void TasksMeter_setValues(Meter* cast);
 
32
 
 
33
void TasksMeter_display(Object* cast, RichString* out);
 
34
 
 
35
#endif