Remove config.status implicit rule.
[usmb.git] / usmb_dir.h
blob44c04430c7f69523951210d7aaf8f302b1fb7c36
1 /* usmb - mount SMB shares via FUSE and Samba
2 * Copyright (C) 2006-2009 Geoff Johnstone
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef USMB_DIR_H
18 #define USMB_DIR_H
20 #include <sys/types.h>
21 #include <fuse.h>
23 int usmb_mkdir (const char *dirname, mode_t mode);
24 int usmb_rmdir (const char *dirname);
25 int usmb_opendir (const char *dirname, struct fuse_file_info *fi);
26 int usmb_readdir (const char *path, void *h, fuse_fill_dir_t filler,
27 off_t offset, struct fuse_file_info *fi);
28 int usmb_releasedir (const char *path, struct fuse_file_info *fi);
29 int usmb_setxattr (const char *path, const char *name, const char *value,
30 size_t size, int flags);
31 int usmb_getxattr (const char *path, const char *name, char *value,
32 size_t size);
33 int usmb_listxattr (const char *path, char *list, size_t size);
34 int usmb_removexattr (const char *path, const char *name);
36 #endif