summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/eulogium.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/eulogium.c b/src/eulogium.c
index b00a695..31e65b6 100644
--- a/src/eulogium.c
+++ b/src/eulogium.c
@@ -41,6 +41,16 @@ static struct button_def but_return = {
.data = NULL,
};
+static struct button_def but_empty = {
+ .text = "N/A",
+ .cb = {
+ .func = NULL,
+ .data = NULL,
+ .info = "Function not implemented",
+ },
+ .data = NULL,
+};
+
static struct button_def but_print_abort = {
.text = "ABORT",
.cb = {