limal-ca-mgm
config.h
Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                                                                      |
00003 |                     _     _   _   _     __     _                     |
00004 |                    | |   | | | \_/ |   /  \   | |                    |
00005 |                    | |   | | | |_| |  / /\ \  | |                    |
00006 |                    | |__ | | | | | | / ____ \ | |__                  |
00007 |                    |____||_| |_| |_|/ /    \ \|____|                 |
00008 |                                                                      |
00009 |                             ca-mgm library                          |
00010 |                                                                      |
00011 |                                         (C) SUSE Linux Products GmbH |
00012 \----------------------------------------------------------------------/
00013 
00014   File:       config.h
00015 
00016   Author:     <Michael Calmer>     <mc@suse.de>
00017   Maintainer: <Michael Calmer>     <mc@suse.de>
00018 
00019   Purpose:
00020 
00021 /-*/
00069 #ifndef    ca_mgm_config_h
00070 #define    ca_mgm_config_h
00071 
00072 #include  <limal/config.h>
00073 
00074 
00078 #ifndef LIMAL_CA_MGM_LIB_VERSION
00079 #define LIMAL_CA_MGM_LIB_VERSION                "1.5.0"
00080 #endif
00081 
00082 
00086 #ifndef LIMAL_CA_MGM_API_VERSION
00087 #define LIMAL_CA_MGM_API_VERSION                1
00088 #endif
00089 
00090 
00095 #ifndef CA_MGM_NAMESPACE
00096 #define CA_MGM_NAMESPACE \
00097         LIMAL_DEFINE_NAMESPACE(ca_mgm, LIMAL_CA_MGM_API_VERSION)
00098 #endif /* CA_MGM_NAMESPACE */
00099 
00112 #ifdef    __cplusplus
00113 namespace LIMAL_NAMESPACE
00114 {
00115     namespace CA_MGM_NAMESPACE
00116     {
00117     }
00118     namespace ca_mgm = CA_MGM_NAMESPACE;
00119 }
00120 #endif /* __cplusplus */
00121 
00122 
00123 #ifdef    __cplusplus
00124 extern "C" {
00125 #endif /* __cplusplus */
00126 
00131 const char * limal_ca_mgm_lib_version();
00132 
00133 
00138 unsigned int limal_ca_mgm_api_version();
00139 
00140 #ifdef    __cplusplus
00141 }
00142 #endif /* __cplusplus */
00143 
00144 
00145 #endif /* ca_mgm_config_h  */
00146