aboutsummaryrefslogtreecommitdiff
path: root/computer.h
diff options
context:
space:
mode:
authorSimon Quigley <tsimonq2@ubuntu.com>2017-06-19 14:38:31 -0500
committerSimon Quigley <tsimonq2@ubuntu.com>2017-06-19 14:38:31 -0500
commita08438bda21b3e0d7db2db2360d040841970104d (patch)
treef8a13a1e368bfbd14fe2d9492d6d5824eb5712ce /computer.h
parent8c1612d32c5682a86216adb8c8d11ce715fe5475 (diff)
Import Upstream version 0.3.7pre
Diffstat (limited to 'computer.h')
-rw-r--r--computer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/computer.h b/computer.h
index 60579689..354a748f 100644
--- a/computer.h
+++ b/computer.h
@@ -7,6 +7,7 @@
typedef struct _ComputerInfo ComputerInfo;
typedef struct _MemoryInfo MemoryInfo;
+typedef struct _ComputerInfo CPUDevice;
struct _MemoryInfo {
gint total;
@@ -26,6 +27,8 @@ struct _ComputerInfo {
gint procno;
gchar *processor;
+ gchar *flags;
+ gchar *machine;
gint frequency;
gint family, model, stepping;
gint cachel2;
@@ -42,4 +45,6 @@ GtkWidget *processor_get_widget(void);
gboolean uptime_update(gpointer data);
gboolean memory_update(gpointer data);
+void hi_show_cpu_info(MainWindow *mainwindow, ComputerInfo *ci);
+
#endif