aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/shell.h
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2006-12-30 00:28:07 +0000
committerLeandro A. F. Pereira <leandro@hardinfo.org>2006-12-30 00:28:07 +0000
commitc123c31f979018eaa10d71131a8e9a915e1d7eb4 (patch)
tree56b5486685efa1c9c3f888aa35f7575a5859fc36 /hardinfo2/shell.h
parentb803a43e033df3d040e1c6d67c57dba55812615c (diff)
Show some results in bytes/second. Allow results to be sorted in reverse order.
Diffstat (limited to 'hardinfo2/shell.h')
-rw-r--r--hardinfo2/shell.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/hardinfo2/shell.h b/hardinfo2/shell.h
index c5508422..c343f557 100644
--- a/hardinfo2/shell.h
+++ b/hardinfo2/shell.h
@@ -31,6 +31,11 @@ typedef struct _ShellModuleEntry ShellModuleEntry;
typedef struct _ShellFieldUpdate ShellFieldUpdate;
typedef enum {
+ SHELL_ORDER_DESCENDING,
+ SHELL_ORDER_ASCENDING,
+} ShellOrderType;
+
+typedef enum {
SHELL_PACK_RESIZE = 1 << 0,
SHELL_PACK_SHRINK = 1 << 1
} ShellPackOptions;
@@ -77,6 +82,7 @@ struct _Shell {
ShellViewType view_type;
gint _pulses;
+ ShellOrderType _order_type;
};
struct _ShellTree {