Commit 16bdd3ed 16bdd3ed9deff47f21e0774a31a71478f5e0c76a by Sergey Poznyakoff

(mhl_format_run): Changed prototype

(MHL_DECODE,MHL_CLEARSCREEN,MHL_BELL): New defines.
1 parent d6aaa1b3
Showing 1 changed file with 5 additions and 2 deletions
...@@ -307,9 +307,12 @@ int mh_whom __P((char *filename, int check)); ...@@ -307,9 +307,12 @@ int mh_whom __P((char *filename, int check));
307 307
308 void mh_annotate __P((message_t msg, char *field, char *text, int date)); 308 void mh_annotate __P((message_t msg, char *field, char *text, int date));
309 309
310 #define MHL_DECODE 1
311 #define MHL_CLEARSCREEN 2
312 #define MHL_BELL 4
313
310 list_t mhl_format_compile __P((char *name)); 314 list_t mhl_format_compile __P((char *name));
311 int mhl_format_run __P((list_t fmt, int width, int length, 315 int mhl_format_run __P((list_t fmt, int width, int length, int flags,
312 int clearscreen, int bell,
313 message_t msg, stream_t output)); 316 message_t msg, stream_t output));
314 void mhl_format_destroy (list_t *fmt); 317 void mhl_format_destroy (list_t *fmt);
315 318
......