config: add QURAN_PATH
[cnoor.git] / txtwin.h
blobdfcde2142bda217be348111220b3bccec2280e42
1 #ifndef _TXTWIN_H
2 #define _TXTWIN_H
4 struct txtwin;
6 struct txtwin *txtwin_alloc();
7 void txtwin_gtk_init(int argc, char **argv);
8 void txtwin_free(struct txtwin *tw);
9 void txtwin_loop(struct txtwin *tw);
10 void txtwin_append(struct txtwin *tw, char *s);
12 #endif