blob: 3760fcff324211c266bddc29f7aa6b5e88d3f4cf [file] [log] [blame] [raw]
/*
htop - FieldData.h
(C) 2004-2015 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#ifndef HTOP_FIELDDATA_H
#define HTOP_FIELDDATA_H
typedef struct {
const char* name;
const char* title;
const char* description;
int flags;
} FieldData;
#endif