Go to the documentation of this file.
20 #ifndef __DC_FS_DCLNATIVE_H
21 #define __DC_FS_DCLNATIVE_H
30 #include <sys/cdefs.h>
37 void dclnative_printk(
const char *str);
41 void dclnative_close(
file_t hnd);
42 ssize_t dclnative_read(
file_t hnd,
void *buf,
size_t cnt);
43 off_t dclnative_seek(
file_t hnd, off_t offset,
int whence);
44 off_t dclnative_tell(
file_t hnd);
45 size_t dclnative_total(
file_t hnd);
47 int dclnative_rename(
vfs_handler_t * vfs,
const char *fn1,
const char *fn2);
51 int fs_dclnative_init();
52 int fs_dclnative_shutdown();