2012-10-30 07:12:24 +04:00
|
|
|
|
|
|
|
#if !defined(CHANSRV_FUSE_H)
|
|
|
|
#define CHANSRV_FUSE_H
|
|
|
|
|
|
|
|
int APP_CC
|
2012-11-04 05:47:04 +04:00
|
|
|
fuse_clear_clip_dir(void);
|
|
|
|
int APP_CC
|
2012-11-05 01:52:33 +04:00
|
|
|
fuse_add_clip_dir_item(char *filename, int flags, int size, int lindex);
|
2012-10-30 07:12:24 +04:00
|
|
|
int APP_CC
|
|
|
|
fuse_get_wait_objs(tbus *objs, int *count, int *timeout);
|
|
|
|
int APP_CC
|
|
|
|
fuse_check_wait_objs(void);
|
|
|
|
int APP_CC
|
|
|
|
fuse_init(void);
|
|
|
|
int APP_CC
|
|
|
|
fuse_deinit(void);
|
|
|
|
|
2012-11-05 01:52:33 +04:00
|
|
|
int APP_CC
|
|
|
|
fuse_file_contents_size(int stream_id, int file_size);
|
|
|
|
int APP_CC
|
|
|
|
fuse_file_contents_range(int stream_id, char *data, int data_bytes);
|
|
|
|
|
2012-10-30 07:12:24 +04:00
|
|
|
#endif
|