summaryrefslogtreecommitdiffstats
path: root/smenu.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2015-10-10 14:04:03 +0200
committerpgen <p.gen.progs@gmail.com>2015-10-10 14:04:03 +0200
commit9773846fc414a9b66ec5a8e7420e53f31f22395e (patch)
treef78a4b7632fb320955426b8ca591543c939c1197 /smenu.h
parent8c3184921e754cb19b0acb170ebc852fcf229754 (diff)
Move color variables to win_t structure
Diffstat (limited to 'smenu.h')
-rw-r--r--smenu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/smenu.h b/smenu.h
index 1a62d6a..f612f49 100644
--- a/smenu.h
+++ b/smenu.h
@@ -81,7 +81,7 @@ int disp_lines(word_t * word_a, win_t * win, toggle_t * toggle, int current,
int last_line, char *tmp_max_word, langinfo_t * langinfo);
int disp_message(char *message, term_t * term, win_t * win);
void disp_word(word_t * word_a, int pos, int search_mode, char *buffer,
- term_t * term, char *tmp_max_word);
+ term_t * term, win_t * win, char *tmp_max_word);
int egetopt(int nargc, char **nargv, char *ostr);
int expand(char *src, char *dest, langinfo_t * langinfo);
int get_bytes(FILE * input, char *mb_buffer, ll_t * word_delims_list,
@@ -90,7 +90,7 @@ int get_scancode(unsigned char *s, int max);
char *get_word(FILE * input, ll_t * word_delims_list,
ll_t * record_delims_list, char *mb_buffer, int *is_last,
toggle_t * toggle, langinfo_t * langinfo, win_t * win);
-void left_margin_putp(char *s, term_t * term);
+void left_margin_putp(char *s, term_t * term, win_t * win);
int main(int argc, char *argv[]);
void right_margin_putp(char *s1, char *s2, langinfo_t * langinfo, term_t * term,
win_t * win, int line, int offset);