s3:libsmb: add cli_{query,set}_security_descriptor() which take sec_info flags
[Samba/gebeck_regimport.git] / source3 / modules / vfs_gpfs.h
blob879b4968c9b7fbce2a98e71bb01115c41f2a7f36
1 /*
2 Unix SMB/CIFS implementation.
3 Wrap gpfs calls in vfs functions.
5 Copyright (C) Christian Ambach <cambach1@de.ibm.com> 2006
7 Major code contributions by Chetan Shringarpure <chetan.sh@in.ibm.com>
8 and Gomati Mohanan <gomati.mohanan@in.ibm.com>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
27 uint32 share_access);
28 int set_gpfs_lease(int fd, int leasetype);
29 int smbd_gpfs_getacl(char *pathname, int flags, void *acl);
30 int smbd_gpfs_putacl(char *pathname, int flags, void *acl);
31 int smbd_gpfs_get_realfilename_path(char *pathname, char *filenamep,
32 int *buflen);
33 int smbd_fget_gpfs_winattrs(int fd, struct gpfs_winattr *attrs);
34 int get_gpfs_winattrs(char * pathname,struct gpfs_winattr *attrs);
35 int set_gpfs_winattrs(char * pathname,int flags,struct gpfs_winattr *attrs);
36 int smbd_gpfs_prealloc(int fd, gpfs_off64_t start, gpfs_off64_t bytes);
37 int smbd_gpfs_ftruncate(int fd, gpfs_off64_t length);
38 int get_gpfs_quota(const char *pathname, int type, int id,
39 struct gpfs_quotaInfo *qi);
40 int get_gpfs_fset_id(const char *pathname, int *fset_id);
42 void init_gpfs(void);
43 void smbd_gpfs_lib_init(void);