source: branches/samba-3.5.x/lib/util/wrap_xattr.h

Last change on this file was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

File size: 553 bytes
Line 
1#ifndef __LIB_UTIL_WRAP_XATTR_H__
2#define __LIB_UTIL_WRAP_XATTR_H__
3
4ssize_t wrap_fgetxattr(int fd, const char *name, void *value, size_t size);
5ssize_t wrap_getxattr(const char *path, const char *name, void *value, size_t size);
6int wrap_fsetxattr(int fd, const char *name, void *value, size_t size, int flags);
7int wrap_setxattr(const char *path, const char *name, void *value, size_t size, int flags);
8int wrap_fremovexattr(int fd, const char *name);
9int wrap_removexattr(const char *path, const char *name);
10
11#endif /* __LIB_UTIL_WRAP_XATTR_H__ */
12
Note: See TracBrowser for help on using the repository browser.