limal-runlevel
|
00001 /*---------------------------------------------------------------------\ 00002 | | 00003 | _ _ _ _ __ _ | 00004 | | | | | | \_/ | / \ | | | 00005 | | | | | | |_| | / /\ \ | | | 00006 | | |__ | | | | | | / ____ \ | |__ | 00007 | |____||_| |_| |_|/ / \ \|____| | 00008 | | 00009 | runlevel library | 00010 | | 00011 | (C) SUSE Linux Products GmbH | 00012 \----------------------------------------------------------------------/ 00013 00014 File: config.h 00015 00016 Author: <Marius Tomaschewski> <mt@suse.de> 00017 Maintainer: <Marius Tomaschewski> <mt@suse.de> 00018 00019 Purpose: 00020 00021 /-*/ 00027 #ifndef runlevel_config_h 00028 #define runlevel_config_h 00029 00030 #include <limal/config.h> 00031 00032 00036 #ifndef LIMAL_RUNLEVEL_LIB_VERSION 00037 #define LIMAL_RUNLEVEL_LIB_VERSION "1.4.2" 00038 #endif 00039 00040 00044 #ifndef LIMAL_RUNLEVEL_API_VERSION 00045 #define LIMAL_RUNLEVEL_API_VERSION 1 00046 #endif 00047 00048 00053 #ifndef RUNLEVEL_NAMESPACE 00054 #define RUNLEVEL_NAMESPACE \ 00055 LIMAL_DEFINE_NAMESPACE(runlevel, LIMAL_RUNLEVEL_API_VERSION) 00056 #endif /* RUNLEVEL_NAMESPACE */ 00057 00070 #ifdef __cplusplus 00071 namespace LIMAL_NAMESPACE 00072 { 00073 namespace RUNLEVEL_NAMESPACE 00074 { 00075 } 00076 namespace runlevel = RUNLEVEL_NAMESPACE; 00077 } 00078 #endif /* __cplusplus */ 00079 00080 00081 #ifdef __cplusplus 00082 extern "C" { 00083 #endif /* __cplusplus */ 00084 00089 const char * limal_runlevel_lib_version(); 00090 00091 00096 unsigned int limal_runlevel_api_version(); 00097 00098 #ifdef __cplusplus 00099 } 00100 #endif /* __cplusplus */ 00101 00102 00103 #endif /* runlevel_config_h */ 00104