00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
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
00057
00070 #ifdef __cplusplus
00071 namespace LIMAL_NAMESPACE
00072 {
00073 namespace RUNLEVEL_NAMESPACE
00074 {
00075 }
00076 namespace runlevel = RUNLEVEL_NAMESPACE;
00077 }
00078 #endif
00079
00080
00081 #ifdef __cplusplus
00082 extern "C" {
00083 #endif
00084
00089 const char * limal_runlevel_lib_version();
00090
00091
00096 unsigned int limal_runlevel_api_version();
00097
00098 #ifdef __cplusplus
00099 }
00100 #endif
00101
00102
00103 #endif
00104