The R Project SVN R

Rev

Rev 9242 | Rev 19423 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9242 Rev 11211
Line 1... Line 1...
1
#ifndef CONNECTIONS_H
1
#ifndef R_EXT_EVENTLOOP_H
2
#define CONNECTIONS_H
2
#define R_EXT_EVENTLOOP_H
3
 
3
 
-
 
4
#ifdef  __cplusplus
-
 
5
extern "C" {
-
 
6
#endif
4
 
7
 
5
#define XActivity 1
8
#define XActivity 1
6
#define StdinActivity 2
9
#define StdinActivity 2
7
 
10
 
8
typedef void (*InputHandlerProc)(void *userData); 
11
typedef void (*InputHandlerProc)(void *userData); 
Line 42... Line 45...
42
#endif
45
#endif
43
 
46
 
44
extern void (* R_PolledEvents)(void);
47
extern void (* R_PolledEvents)(void);
45
extern int R_wait_usec;
48
extern int R_wait_usec;
46
 
49
 
-
 
50
#ifdef  __cplusplus
-
 
51
}
47
#endif
52
#endif
-
 
53
 
-
 
54
#endif /* R_EXT_EVENTLOOP_H */