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

« back to all changes in this revision

Viewing changes to Settings.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:
15
15
 
16
16
#include "debug.h"
17
17
 
18
 
 
19
18
typedef struct Settings_ {
20
19
   char* userSettings;
21
20
   ProcessList* pl;
22
21
   Header* header;
 
22
   int colorScheme;
 
23
   int delay;
23
24
} Settings;
24
25
 
25
26