Directory: | cvmfs/ |
---|---|
File: | cvmfs/fuse_main.h |
Date: | 2025-06-22 02:36:02 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 0 | 2 | 0.0% |
Branches: | 0 | 0 | -% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | /** | ||
2 | * This file is part of the CernVM File System. | ||
3 | */ | ||
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 | ||
10 | struct CvmfsStubExports { | ||
11 | ✗ | CvmfsStubExports() | |
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_ | ||
20 |