summaryrefslogtreecommitdiffstats
path: root/Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'Object.h')
-rw-r--r--Object.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Object.h b/Object.h
index bcf2c481..3505708c 100644
--- a/Object.h
+++ b/Object.h
@@ -5,6 +5,7 @@
/*
htop - Object.h
(C) 2004-2012 Hisham H. Muhammad
+(C) 2020 Red Hat, Inc. All Rights Reserved.
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
@@ -41,6 +42,11 @@ struct Object_ {
ObjectClass* klass;
};
+typedef union {
+ int i;
+ void* v;
+} Arg;
+
extern ObjectClass Object_class;