ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtperl.h
Revision: 1.21
Committed: Wed Jan 25 00:42:21 2006 UTC (18 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-7_3, rel-7_6, rel-7_5, rel-7_8, rel-7_9, rel-7_7, rel-7_4, rel-7_3a
Changes since 1.20: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 /*
2     * rxvtperl.h
3     */
4    
5     #ifndef RXVTPERL_H_
6     #define RXVTPERL_H_
7    
8     #if ENABLE_PERL
9 root 1.19 # define SHOULD_INVOKE(htype) \
10     ( (htype) == HOOK_INIT \
11     || (htype) == HOOK_DESTROY \
12     || (htype) == HOOK_REFRESH_BEGIN \
13     || (htype) == HOOK_REFRESH_END \
14     || perl.should_invoke [htype])
15 root 1.9 # define HOOK_INVOKE(args) rxvt_perl.invoke args
16 root 1.1
17     #include "rxvt.h"
18    
19     enum data_type {
20 root 1.19 DT_END, // no further arguments
21 root 1.1 DT_INT,
22     DT_LONG,
23 root 1.19 DT_STR, // 0-terminates string
24     DT_STR_LEN, // string + length
25 root 1.21 DT_WCS_LEN, // wchar_t* + length
26     DT_LCS_LEN, // long* + length
27 root 1.5 DT_XEVENT,
28 root 1.1 };
29    
30     enum hook_type {
31 root 1.7 # define def(sym) HOOK_ ## sym,
32     # include "hookinc.h"
33     # undef def
34 root 1.1 HOOK_NUM,
35     };
36    
37 root 1.13 struct rxvt_perl_term
38     {
39     void *self;
40     unsigned long grabtime;
41 root 1.18 uint8_t should_invoke[HOOK_NUM];
42 root 1.13 };
43    
44 root 1.1 struct rxvt_perl_interp
45     {
46 root 1.16 char **perl_environ;
47    
48 root 1.1 ~rxvt_perl_interp ();
49    
50 root 1.20 void init (rxvt_term *term);
51 root 1.1 bool invoke (rxvt_term *term, hook_type htype, ...);
52 root 1.9 void line_update (rxvt_term *term);
53 root 1.1 };
54    
55     extern struct rxvt_perl_interp rxvt_perl;
56    
57     #else
58 root 1.9 # define SHOULD_INVOKE(htype) false
59 root 1.11 # define HOOK_INVOKE(args) false
60 root 1.1 #endif
61    
62     #endif
63