You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
335 B

#pragma once
#include "int_types.h"
#define FUSE_CFG_INVALID_ID -1
#define FUSE_CFG_INVALID_UMASK -1
struct fuse_cfg_t
{
s64 uid = -1;
bool valid_uid() const;
s64 gid = -1;
bool valid_gid() const;
s64 umask = -1;
bool valid_umask() const;
s64 remember = 0;
bool debug = false;
};
extern fuse_cfg_t fuse_cfg;