~ubuntu-branches/ubuntu/dapper/htop/dapper

« back to all changes in this revision

Viewing changes to Signal.h

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2005-11-04 17:25:27 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051104172527-ob8flxaf5409e2y7
Tags: 0.5.4-1
* New upstream version.
  - does not leave cruft on console on exit. (Closes: #334657) 

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_Signal
4
 
#define HEADER_Signal
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 "String.h"
13
 
#include "Object.h"
14
 
#include "RichString.h"
15
 
#include <string.h>
16
 
 
17
 
#include "debug.h"
18
 
 
19
 
#define SIGNAL_COUNT 34
20
 
 
21
 
 
22
 
typedef struct Signal_ {
23
 
   Object super;
24
 
   char* name;
25
 
   int number;
26
 
} Signal;
27
 
 
28
 
extern char* SIGNAL_CLASS;
29
 
 
30
 
 
31
 
Signal* Signal_new(char* name, int number);
32
 
 
33
 
void Signal_delete(Object* cast);
34
 
 
35
 
void Signal_display(Object* cast, RichString* out);
36
 
 
37
 
int Signal_getSignalCount();
38
 
 
39
 
Signal** Signal_getSignalTable();
40
 
 
41
 
#endif