haiku/headers/os/kernel/fs_attr.h
Axel Dörfler 10567eeb6e Changed an unused field of struct stat (st_rdev) to st_type, so that we
can use this structure to call fstat() on attributes and indices.
Added more functions to the file system interface (attributes, and indices).
Added header fs_attr.h, and fs_index.h.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1158 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-09-24 16:02:53 +00:00

46 lines
1.3 KiB
C

/* fs_attr.h
**
** functions/definitions for retrieving and setting attribute information.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _FS_ATTR_H
#define _FS_ATTR_H
#include <OS.h>
#include <dirent.h>
typedef struct attr_info {
uint32 type;
off_t size;
} attr_info;
#ifdef __cplusplus
extern "C" {
#endif
extern ssize_t fs_read_attr(int fd, const char *attribute, uint32 type, off_t pos, void *buffer, size_t readBytes);
extern ssize_t fs_write_attr(int fd, const char *attribute, uint32 type, off_t pos, const void *buffer, size_t readBytes);
extern int fs_remove_attr(int fd, const char *attribute);
extern int fs_stat_attr(int fd, const char *name, struct attr_info *attrInfo);
// ToDo: the following three functions are not part of the R5 API, and
// are only preliminary - they may change or be removed at any point
extern int fs_open_attr(const char *path, const char *attribute);
extern int fs_fopen_attr(int fd, const char *attribute);
extern int fs_close_attr(int fd);
extern DIR *fs_open_attr_dir(const char *path);
extern DIR *fs_fopen_attr_dir(int fd);
extern int fs_close_attr_dir(DIR *dirp);
extern struct dirent *fs_read_attr_dir(DIR *dirp);
extern void fs_rewind_attr_dir(DIR *dirp);
#ifdef __cplusplus
}
#endif
#endif /* _FS_ATTR_H */