summaryrefslogtreecommitdiff
path: root/scripts/kconfig/expr.h
diff options
context:
space:
mode:
authorRoman Zippel <zippel@linux-m68k.org>2002-12-15 00:04:11 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2002-12-15 00:04:11 -0800
commitd282afeb2d8d241081242ef48136aac955cfa3dc (patch)
treef5a25f91aa0270487c39cdeb4b0417da081076aa /scripts/kconfig/expr.h
parent4cd4dbacc8893a61f05d513c129f2610f68a3467 (diff)
[PATCH] kconfig: symbol change notification
Add a changed flag to properties, which can be used by front ends to check for changed symbols/properties.
Diffstat (limited to 'scripts/kconfig/expr.h')
-rw-r--r--scripts/kconfig/expr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h
index e96d03b5ab2f..896a296d17c5 100644
--- a/scripts/kconfig/expr.h
+++ b/scripts/kconfig/expr.h
@@ -166,12 +166,15 @@ struct menu {
struct symbol *sym;
struct property *prompt;
struct expr *dep;
+ unsigned int flags;
//char *help;
struct file *file;
int lineno;
void *data;
};
+#define MENU_CHANGED 0x0001
+
#ifndef SWIG
extern struct file *file_list;