summaryrefslogtreecommitdiff
path: root/fs/file.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-18 00:48:07 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-18 00:48:07 +0200
commitdb22b587966b4a4eaa47536f32ca812532446bcb (patch)
treeb6d471f5232973713ef64d9c81feefef51ee5eaf /fs/file.h
parent042e25e19b5fc0cec1d47440c26246c886cf39f6 (diff)
heavy refactoring underway
Diffstat (limited to 'fs/file.h')
-rw-r--r--fs/file.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/file.h b/fs/file.h
index e5a0664..241301f 100644
--- a/fs/file.h
+++ b/fs/file.h
@@ -5,11 +5,10 @@
typedef struct file_struct
{
- uint32_t file_id;
+ int fgetc();
+ int fputc();
- void (*read)();
- void (*write)();
- void (*seek)();
+ void *opaque;
}file;