limal-apparmor-control
|
00001 /*---------------------------------------------------------------------\ 00002 | | 00003 | _ _ _ _ __ _ | 00004 | | | | | | \_/ | / \ | | | 00005 | | | | | | |_| | / /\ \ | | | 00006 | | |__ | | | | | | / ____ \ | |__ | 00007 | |____||_| |_| |_|/ / \ \|____| | 00008 | | 00009 | apparmor-control library | 00010 | | 00011 | (C) SUSE Linux Products GmbH | 00012 \----------------------------------------------------------------------/ 00013 00014 File: config.h 00015 00016 Author: Matt Barringer <mbarringer@suse.de> 00017 Maintainer: Matt Barringer <mbarringer@suse.de> 00018 00019 Purpose: 00020 00021 /-*/ 00027 #ifndef apparmor_control_config_h 00028 #define apparmor_control_config_h 00029 00030 #include <limal/config.h> 00031 00032 00036 #ifndef LIMAL_APPARMOR_CONTROL_LIB_VERSION 00037 #define LIMAL_APPARMOR_CONTROL_LIB_VERSION "1.4.2" 00038 #endif 00039 00040 00044 #ifndef LIMAL_APPARMOR_CONTROL_API_VERSION 00045 #define LIMAL_APPARMOR_CONTROL_API_VERSION 1 00046 #endif 00047 00048 00053 #ifndef APPARMOR_CONTROL_NAMESPACE 00054 #define APPARMOR_CONTROL_NAMESPACE \ 00055 LIMAL_DEFINE_NAMESPACE(apparmor_control, LIMAL_APPARMOR_CONTROL_API_VERSION) 00056 #endif /* APPARMOR_CONTROL_NAMESPACE */ 00057 00058 00065 #ifdef __cplusplus 00066 namespace LIMAL_NAMESPACE 00067 { 00068 namespace APPARMOR_CONTROL_NAMESPACE 00069 { 00070 } 00071 namespace apparmor_control = APPARMOR_CONTROL_NAMESPACE; 00072 } 00073 #endif /* __cplusplus */ 00074 00075 00076 #ifdef __cplusplus 00077 extern "C" { 00078 #endif /* __cplusplus */ 00079 00084 const char * limal_apparmor_control_lib_version(); 00085 00086 00091 unsigned int limal_apparmor_control_api_version(); 00092 00093 #ifdef __cplusplus 00094 } 00095 #endif /* __cplusplus */ 00096 00097 00098 #endif /* apparmor_control_config_h */ 00099