ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtperl.h
Revision: 1.7
Committed: Wed Jan 4 02:37:30 2006 UTC (18 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-6_3
Changes since 1.6: +3 -28 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 * rxvtperl.h
3 */
4
5 #ifndef RXVTPERL_H_
6 #define RXVTPERL_H_
7
8 #if ENABLE_PERL
9
10 #include "rxvt.h"
11
12 #define PERL_INVOKE(args) rxvt_perl.invoke args
13
14 enum data_type {
15 DT_END,
16 DT_INT,
17 DT_LONG,
18 DT_STRING,
19 DT_XEVENT,
20 };
21
22 enum hook_type {
23 # define def(sym) HOOK_ ## sym,
24 # include "hookinc.h"
25 # undef def
26 HOOK_NUM,
27 };
28
29 struct rxvt_perl_interp
30 {
31 rxvt_perl_interp ();
32 ~rxvt_perl_interp ();
33
34 bool should_invoke[HOOK_NUM];
35
36 void init ();
37 bool invoke (rxvt_term *term, hook_type htype, ...);
38 };
39
40 extern struct rxvt_perl_interp rxvt_perl;
41
42 #else
43 # define PERL_INVOKE(args) false
44 #endif
45
46 #endif
47