diff options
author | Leandro Pereira <leandro@hardinfo.org> | 2010-01-01 13:50:55 -0200 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2010-01-01 13:50:55 -0200 |
commit | e6fb48251e70d87404bf7738722679b9281ed108 (patch) | |
tree | eeb168e65fbfde2f4b5d3d78fc79b8cd151ad11b /hardinfo2/hardinfo.h | |
parent | 94a513ab865ccad5b87fc661076f24eb9b87f11c (diff) |
Don't include benchmarks in remote mode.
Diffstat (limited to 'hardinfo2/hardinfo.h')
-rw-r--r-- | hardinfo2/hardinfo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hardinfo2/hardinfo.h b/hardinfo2/hardinfo.h index dc720069..71dc9c14 100644 --- a/hardinfo2/hardinfo.h +++ b/hardinfo2/hardinfo.h @@ -22,6 +22,11 @@ #include <gtk/gtk.h> #include <shell.h> +typedef enum { + MODULE_FLAG_NONE = 0, + MODULE_FLAG_NO_REMOTE = 1<<0, +} ModuleEntryFlags; + typedef struct _ModuleEntry ModuleEntry; typedef struct _ModuleAbout ModuleAbout; typedef struct _FileTypes FileTypes; @@ -56,6 +61,7 @@ struct _ModuleEntry { gchar *icon; gpointer callback; gpointer scan_callback; + guint32 flags; }; struct _ModuleAbout { |