limal-nfs-server
config.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | |
3 | _ _ _ _ __ _ |
4 | | | | | | \_/ | / \ | | |
5 | | | | | | |_| | / /\ \ | | |
6 | | |__ | | | | | | / ____ \ | |__ |
7 | |____||_| |_| |_|/ / \ \|____| |
8 | |
9 | nfs-server library |
10 | |
11 | (C) SUSE Linux Products GmbH |
12 | (C) Novell, Inc. |
13 \----------------------------------------------------------------------/
14 
15  File: config.h
16 
17  Author: Marius Tomaschewski, Chakravarthi P
18  Maintainer: Chakravarthi P
19 
20 /-*/
26 #ifndef nfs_server_config_h
27 #define nfs_server_config_h
28 
29 #include <limal/config.h>
30 
31 
35 #ifndef LIMAL_NFS_SERVER_LIB_VERSION
36 #define LIMAL_NFS_SERVER_LIB_VERSION "1.4.2"
37 #endif
38 
39 
43 #ifndef LIMAL_NFS_SERVER_API_VERSION
44 #define LIMAL_NFS_SERVER_API_VERSION 1
45 #endif
46 
47 
52 #ifndef NFS_SERVER_NAMESPACE
53 #define NFS_SERVER_NAMESPACE \
54  LIMAL_DEFINE_NAMESPACE(nfs_server, LIMAL_NFS_SERVER_API_VERSION)
55 #endif /* NFS_SERVER_NAMESPACE */
56 
57 
64 #ifdef __cplusplus
65 namespace LIMAL_NAMESPACE
66 {
67  namespace NFS_SERVER_NAMESPACE
68  {
69  }
70  namespace nfs_server = NFS_SERVER_NAMESPACE;
71 }
72 #endif /* __cplusplus */
73 
74 
75 #ifdef __cplusplus
76 extern "C" {
77 #endif /* __cplusplus */
78 
83 const char * limal_nfs_server_lib_version();
84 
85 
90 unsigned int limal_nfs_server_api_version();
91 
92 #ifdef __cplusplus
93 }
94 #endif /* __cplusplus */
95 
96 
97 #endif /* nfs_server_config_h */
98