Go to the documentation of this file.00001 #ifndef _XRDOSS_CONFIG_H
00002 #define _XRDOSS_CONFIG_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #define XRDOSS_VERSION "2.0.0"
00016
00017
00018
00019 #ifndef XrdOssOK
00020 #define XrdOssOK 0
00021 #endif
00022
00023
00024
00025 #define XrdOss_ROOTDIR 0x00000001
00026 #define XrdOss_USRPRTY 0x00000002
00027 #define XrdOss_EXPORT 0x00000004
00028 #define XrdOss_CacheFS 0x00000008
00029
00030
00031
00032 struct OssDPath
00033 {OssDPath *Next;
00034 char *Path1;
00035 char *Path2;
00036 OssDPath(OssDPath *dP,char *p1,char *p2) : Next(dP),Path1(p1),Path2(p2) {}
00037 };
00038 #endif