Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-01 08:52:29

0001 /*
0002  * $Id$
0003  *
0004  * $Log$
0005  * Revision 1.1  1996/03/08 15:33:00  mclareni
0006  * Initial revision
0007  *
0008  */
0009 
0010 #define ESCAPE          "#@"
0011 
0012 
0013 typedef void (*KxtermActionProc)(
0014 #ifndef NO_PROTOTYPES
0015     char**              /* params */,
0016     int                 /* num_params */
0017 #endif
0018 );
0019 
0020 typedef struct _KxtermActionsRec{
0021     char               *string;
0022     KxtermActionProc    proc;
0023 } KxtermActionsRec;
0024 
0025 typedef KxtermActionsRec  *KxtermActionList;
0026 
0027 extern void             kxterm_add_actions(
0028                                      KxtermActionList);
0029 extern void             handle_kxterm_action(
0030                                      char *);
0031 extern void             send_kxterm_cmd(
0032                                      char**);
0033 extern void             send_single_kxterm_cmd(
0034                                      char*);
0035