comparison mcabber/src/screen.h @ 47:7259a61e1a4b

[/trunk] Changeset 63 by mikael * Add commands.[ch] files, to deal with command lines. Move sendmessage() to commands.c * Update Makefile accordingly. * Create a scr_WriteMessage() function, layer between UI and the scr_WriteIncomingMessage() / scr_WriteOutgoingMessage(). (The last one is a new function)
author mikael
date Wed, 06 Apr 2005 10:07:59 +0000
parents c10f95f959d0
children 5425ee13dce6
comparison
equal deleted inserted replaced
46:f22e1d120606 47:7259a61e1a4b
19 extern int update_roster; 19 extern int update_roster;
20 20
21 void scr_InitCurses(void); 21 void scr_InitCurses(void);
22 void scr_DrawMainWindow(void); 22 void scr_DrawMainWindow(void);
23 void scr_TerminateCurses(void); 23 void scr_TerminateCurses(void);
24 void scr_WriteInWindow(char *nombreVentana, char *texto, int TimeStamp, 24 // void scr_WriteInWindow(char *nombreVentana, char *texto, int TimeStamp,
25 int force_show); 25 // int force_show);
26 void scr_WriteIncomingMessage(char *jidfrom, char *text); 26 void scr_WriteIncomingMessage(char *jidfrom, char *text);
27 void scr_WriteOutgoingMessage(char *jidto, char *text);
27 void scr_RoolWindow(void); 28 void scr_RoolWindow(void);
28 void scr_ShowBuddyWindow(void); 29 void scr_ShowBuddyWindow(void);
29 void scr_LogPrint(const char *fmt, ...); 30 void scr_LogPrint(const char *fmt, ...);
30 31
31 int scr_IsHiddenMessage(char *jid); 32 int scr_IsHiddenMessage(char *jid);