acl  3.5.3.0
acl_master_flow.h
浏览该文件的文档.
1 #ifndef __ACL_MASTER_FLOW_INCLUDED_H__
2 #define __ACL_MASTER_FLOW_INCLUDED_H__
3 
4 #include "../stdlib/acl_define.h"
5 
6 #ifndef ACL_CLIENT_ONLY
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #ifdef ACL_UNIX
13 
14  /*
15  * Functional interface.
16  */
17 extern int acl_var_master_flow_pipe[2];
18 
19 extern void acl_master_flow_init(void);
20 extern int acl_master_flow_get(int);
21 extern int acl_master_flow_put(int);
22 extern int acl_master_flow_count(void);
23 
24 #endif /* ACL_UNIX */
25 
26 #ifdef __cplusplus
27 }
28 
29 #endif /* ACL_CLIENT_ONLY */
30 #endif
31 
32 #endif