limal-ca-mgm
config.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | |
3 | _ _ _ _ __ _ |
4 | | | | | | \_/ | / \ | | |
5 | | | | | | |_| | / /\ \ | | |
6 | | |__ | | | | | | / ____ \ | |__ |
7 | |____||_| |_| |_|/ / \ \|____| |
8 | |
9 | ca-mgm library |
10 | |
11 | (C) SUSE Linux Products GmbH |
12 \----------------------------------------------------------------------/
13 
14  File: config.h
15 
16  Author: <Michael Calmer> <mc@suse.de>
17  Maintainer: <Michael Calmer> <mc@suse.de>
18 
19  Purpose:
20 
21 /-*/
69 #ifndef ca_mgm_config_h
70 #define ca_mgm_config_h
71 
72 #include <limal/config.h>
73 
74 
78 #ifndef LIMAL_CA_MGM_LIB_VERSION
79 #define LIMAL_CA_MGM_LIB_VERSION "1.5.0"
80 #endif
81 
82 
86 #ifndef LIMAL_CA_MGM_API_VERSION
87 #define LIMAL_CA_MGM_API_VERSION 1
88 #endif
89 
90 
95 #ifndef CA_MGM_NAMESPACE
96 #define CA_MGM_NAMESPACE \
97  LIMAL_DEFINE_NAMESPACE(ca_mgm, LIMAL_CA_MGM_API_VERSION)
98 #endif /* CA_MGM_NAMESPACE */
99 
112 #ifdef __cplusplus
113 namespace LIMAL_NAMESPACE
114 {
115  namespace CA_MGM_NAMESPACE
116  {
117  }
118  namespace ca_mgm = CA_MGM_NAMESPACE;
119 }
120 #endif /* __cplusplus */
121 
122 
123 #ifdef __cplusplus
124 extern "C" {
125 #endif /* __cplusplus */
126 
131 const char * limal_ca_mgm_lib_version();
132 
133 
138 unsigned int limal_ca_mgm_api_version();
139 
140 #ifdef __cplusplus
141 }
142 #endif /* __cplusplus */
143 
144 
145 #endif /* ca_mgm_config_h */
146