summaryrefslogtreecommitdiff
path: root/src/dialog.hh
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-10-07 00:36:34 +0200
committerjcid <devnull@localhost>2007-10-07 00:36:34 +0200
commit93715c46a99c96d6c866968312691ec9ab0f6a03 (patch)
tree573f19ec6aa740844f53a7c0eb7114f04096bf64 /src/dialog.hh
Initial revision
Diffstat (limited to 'src/dialog.hh')
-rw-r--r--src/dialog.hh22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/dialog.hh b/src/dialog.hh
new file mode 100644
index 00000000..9b927832
--- /dev/null
+++ b/src/dialog.hh
@@ -0,0 +1,22 @@
+#ifndef __DIALOG_HH__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+void a_Dialog_msg(const char *msg);
+int a_Dialog_choice3(const char *msg,
+ const char *b0, const char *b1, const char *b2);
+const char *a_Dialog_input(const char *msg);
+const char *a_Dialog_save_file(const char *msg,
+ const char *pattern, const char *fname);
+char *a_Dialog_open_file(const char *msg,
+ const char *pattern, const char *fname);
+void a_Dialog_text_window(const char *txt, const char *title);
+
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif // __DIALOG_HH__