comparison mcabber/mcabber/screen.h @ 1783:af3de54ef986

Convert scr_LogPrint() to scr_log_print() Add a #define for compatibility. Same for scr_Write{Incoming,Outgoing}Message() functions.
author Mikael Berthe <mikael@lilotux.net>
date Sun, 14 Mar 2010 12:48:21 +0100
parents e4378fbab5d7
children 6e0a8bfb3a01
comparison
equal deleted inserted replaced
1782:97803c87d82d 1783:af3de54ef986
86 MC_OFF, 86 MC_OFF,
87 MC_REMOVE 87 MC_REMOVE
88 } muccoltype; 88 } muccoltype;
89 89
90 90
91 void scr_WriteIncomingMessage(const char *jidfrom, const char *text, 91 void scr_write_incoming_message(const char *jidfrom, const char *text,
92 time_t timestamp, guint prefix, 92 time_t timestamp, guint prefix,
93 unsigned mucnicklen); 93 unsigned mucnicklen);
94 void scr_WriteOutgoingMessage(const char *jidto, const char *text, 94 void scr_write_outgoing_message(const char *jidto, const char *text,
95 guint prefix, gpointer xep184); 95 guint prefix, gpointer xep184);
96 96
97 void scr_getch(keycode *kcode); 97 void scr_getch(keycode *kcode);
98 void scr_process_key(keycode kcode); 98 void scr_process_key(keycode kcode);
99 99
100 void scr_init_bindings(void); 100 void scr_init_bindings(void);
182 void readline_iline_end(void); 182 void readline_iline_end(void);
183 void readline_backward_kill_iline(void); 183 void readline_backward_kill_iline(void);
184 void readline_forward_kill_iline(void); 184 void readline_forward_kill_iline(void);
185 void readline_send_multiline(void); 185 void readline_send_multiline(void);
186 186
187
188 // For backward compatibility:
189
190 #define scr_WriteIncomingMessage scr_write_incoming_message
191 #define scr_WriteOutgoingMessage scr_write_outgoing_message
192
187 #endif 193 #endif
188 194
189 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */ 195 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */