Just a little correction at the it.po file.
[midnight-commander.git] / src / dialog.h
blobd7d23bfb332f5585ee425dabac8216071affc776
1 #ifndef __DIALOG_H
2 #define __DIALOG_H
4 /* We search under the stack until we find a refresh function that covers */
5 /* the complete screen, and from this point we go up refreshing the */
6 /* individual regions */
8 enum {
9 REFRESH_COVERS_PART, /* If the refresh fn convers only a part */
10 REFRESH_COVERS_ALL /* If the refresh fn convers all the screen */
13 typedef void (*refresh_fn) (void *);
14 void push_refresh (refresh_fn new_refresh, void *parameter, int flags);
15 void pop_refresh (void);
16 void do_refresh (void);
18 #endif /* __DIALOG_H */