]> code.citadel.org Git - citadel.git/blobdiff - citadel/commands.h
* The size constant "256" which shows up everywhere as a buffer size has now
[citadel.git] / citadel / commands.h
index 60e1403f57badb772c7c28df6acf2eaab2648d44..9a70678815c502c6719b9596c90727ce523039fb 100644 (file)
@@ -1,4 +1,7 @@
-/* $Id$ */
+/*
+ * $Id$
+ *
+ */
 
 /*
  * Colors for color() command
@@ -22,6 +25,8 @@
 #define COLOR_PUSH     16      /* Save current color */
 #define COLOR_POP      17      /* Restore saved color */
 
+#define MAXURLS                50      /* Max embedded URL's per message */
+
 /*
  * declarations
  */
@@ -45,3 +50,17 @@ extern int enable_color;
 int yesno(void);
 int yesno_d(int d);
 void keyopt(char *);
+char keymenu(char *menuprompt, char *menustring);
+void async_ka_start(void);
+void async_ka_end(void);
+int checkpagin(int lp, int pagin, int height);
+char was_a_key_pressed(void);
+void pprintf(const char *format, ...);
+
+
+
+extern int num_urls;
+extern char urls[MAXURLS][SIZ];
+extern char rc_url_cmd[SIZ];
+extern int lines_printed;
+extern int rc_remember_passwords;