limal-nfs-server

config.h

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                                                                      |
00003 |                     _     _   _   _     __     _                     |
00004 |                    | |   | | | \_/ |   /  \   | |                    |
00005 |                    | |   | | | |_| |  / /\ \  | |                    |
00006 |                    | |__ | | | | | | / ____ \ | |__                  |
00007 |                    |____||_| |_| |_|/ /    \ \|____|                 |
00008 |                                                                      |
00009 |                             nfs-server library                       |
00010 |                                                                      |
00011 |                                         (C) SUSE Linux Products GmbH |
00012 |                                         (C) Novell, Inc.             |
00013 \----------------------------------------------------------------------/
00014 
00015   File:       config.h
00016 
00017   Author:     Marius Tomaschewski, Chakravarthi P
00018   Maintainer: Chakravarthi P
00019 
00020 /-*/
00026 #ifndef   nfs_server_config_h
00027 #define   nfs_server_config_h
00028 
00029 #include <limal/config.h>
00030 
00031 
00035 #ifndef LIMAL_NFS_SERVER_LIB_VERSION
00036 #define LIMAL_NFS_SERVER_LIB_VERSION            "1.4.2"
00037 #endif
00038 
00039 
00043 #ifndef LIMAL_NFS_SERVER_API_VERSION
00044 #define LIMAL_NFS_SERVER_API_VERSION            1
00045 #endif
00046 
00047 
00052 #ifndef NFS_SERVER_NAMESPACE
00053 #define NFS_SERVER_NAMESPACE \
00054         LIMAL_DEFINE_NAMESPACE(nfs_server, LIMAL_NFS_SERVER_API_VERSION)
00055 #endif /* NFS_SERVER_NAMESPACE */
00056 
00057 
00064 #ifdef    __cplusplus
00065 namespace LIMAL_NAMESPACE
00066 {
00067     namespace NFS_SERVER_NAMESPACE
00068     {
00069     }
00070     namespace nfs_server = NFS_SERVER_NAMESPACE;
00071 }
00072 #endif /* __cplusplus */
00073 
00074 
00075 #ifdef    __cplusplus
00076 extern "C" {
00077 #endif /* __cplusplus */
00078 
00083 const char * limal_nfs_server_lib_version();
00084 
00085 
00090 unsigned int limal_nfs_server_api_version();
00091 
00092 #ifdef    __cplusplus
00093 }
00094 #endif /* __cplusplus */
00095 
00096 
00097 #endif /* nfs_server_config_h  */
00098