-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
| static struct fuse_operations hello_oper = { |
Can be fixed by using common C++ struct filling.
int main(int argc, char *argv[])
{
fuse_operations fuse_ops = {};
fuse_ops.getattr = getattr_callback;
fuse_ops.open = open_callback;
fuse_ops.read = read_callback;
fuse_ops.readdir = readdir_callback;
return fuse_main(argc, argv, &fuse_ops, NULL);
}
Metadata
Metadata
Assignees
Labels
No labels