limal-apparmor-control
config.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | |
3 | _ _ _ _ __ _ |
4 | | | | | | \_/ | / \ | | |
5 | | | | | | |_| | / /\ \ | | |
6 | | |__ | | | | | | / ____ \ | |__ |
7 | |____||_| |_| |_|/ / \ \|____| |
8 | |
9 | apparmor-control library |
10 | |
11 | (C) SUSE Linux Products GmbH |
12 \----------------------------------------------------------------------/
13 
14  File: config.h
15 
16  Author: Matt Barringer <mbarringer@suse.de>
17  Maintainer: Matt Barringer <mbarringer@suse.de>
18 
19  Purpose:
20 
21 /-*/
27 #ifndef apparmor_control_config_h
28 #define apparmor_control_config_h
29 
30 #include <limal/config.h>
31 
32 
36 #ifndef LIMAL_APPARMOR_CONTROL_LIB_VERSION
37 #define LIMAL_APPARMOR_CONTROL_LIB_VERSION "1.4.2"
38 #endif
39 
40 
44 #ifndef LIMAL_APPARMOR_CONTROL_API_VERSION
45 #define LIMAL_APPARMOR_CONTROL_API_VERSION 1
46 #endif
47 
48 
53 #ifndef APPARMOR_CONTROL_NAMESPACE
54 #define APPARMOR_CONTROL_NAMESPACE \
55  LIMAL_DEFINE_NAMESPACE(apparmor_control, LIMAL_APPARMOR_CONTROL_API_VERSION)
56 #endif /* APPARMOR_CONTROL_NAMESPACE */
57 
58 
65 #ifdef __cplusplus
66 namespace LIMAL_NAMESPACE
67 {
68  namespace APPARMOR_CONTROL_NAMESPACE
69  {
70  }
71  namespace apparmor_control = APPARMOR_CONTROL_NAMESPACE;
72 }
73 #endif /* __cplusplus */
74 
75 
76 #ifdef __cplusplus
77 extern "C" {
78 #endif /* __cplusplus */
79 
85 
86 
92 
93 #ifdef __cplusplus
94 }
95 #endif /* __cplusplus */
96 
97 
98 #endif /* apparmor_control_config_h */
99