CernVM-FS  2.13.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fuse_main.h
Go to the documentation of this file.
1 
4 #include <cstddef>
5 
6 #ifndef CVMFS_FUSE_MAIN_H_
7 #define CVMFS_FUSE_MAIN_H_
8 
9 // The entry point in libcvmfs_stub to handover from cvmfs2
12  : version(0), size(sizeof(CvmfsStubExports)), fn_main(NULL) { }
13 
14  int version;
15  int size;
16  int (*fn_main)(int, char **);
17 };
18 
19 #endif // CVMFS_FUSE_MAIN_H_
int(* fn_main)(int, char **)
Definition: fuse_main.h:16