aboutsummaryrefslogtreecommitdiff
path: root/src/dialog.hh
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2013-01-11 17:07:45 -0300
committerJorge Arellano Cid <jcid@dillo.org>2013-01-11 17:07:45 -0300
commit62ad3098f33f42dcf10d6eaff63c726bece9497e (patch)
tree8675864ca4feb21f2767a301c1f02218401d239e /src/dialog.hh
parentb9f1468f7c49981b3c01e6308b25941aba4e4d94 (diff)
Modified a_Dialog_choice5() to accept any number of alternatives [p37sitdu]
Diffstat (limited to 'src/dialog.hh')
-rw-r--r--src/dialog.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dialog.hh b/src/dialog.hh
index 8b3bc1b7..0a489590 100644
--- a/src/dialog.hh
+++ b/src/dialog.hh
@@ -9,9 +9,7 @@ typedef void (*UserPasswordCB)(const char *user, const char *password,
void *vp);
void a_Dialog_msg(const char *title, const char *msg);
-int a_Dialog_choice5(const char *title, const char *msg,
- const char *alt1, const char *alt2, const char *alt3,
- const char *alt4, const char *alt5);
+int a_Dialog_choice(const char *title, const char *msg, ...);
int a_Dialog_user_password(const char *title, const char *msg,
UserPasswordCB cb, void *vp);
const char *a_Dialog_input(const char *title, const char *msg);