Rev 2629 | Rev 2643 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2629 | Rev 2638 | ||
---|---|---|---|
Line 133... | Line 133... | ||
133 | uint32_t size; |
133 | uint32_t size; |
134 | } __attribute__ ((packed)) fat_dentry_t; |
134 | } __attribute__ ((packed)) fat_dentry_t; |
135 | 135 | ||
136 | extern uint8_t *plb_ro; |
136 | extern uint8_t *plb_ro; |
137 | 137 | ||
- | 138 | extern void fat_lookup(ipc_callid_t, ipc_call_t *); |
|
- | 139 | ||
- | 140 | /* |
|
- | 141 | * The following interfaces are rather fs-neutral and might be later moved to a |
|
- | 142 | * dedicated library (e.g. libfs). We just wait until the interfaces stabilize |
|
- | 143 | * and until there is more than one fs implementation. |
|
- | 144 | */ |
|
138 | extern int block_read(int, unsigned long, void *); |
145 | extern int block_read(int, unsigned long, void *); |
- | 146 | extern int block_write(int, unsigned long, void *); |
|
139 | 147 | ||
- | 148 | extern void node_add_mp(int, unsigned long); |
|
140 | extern void fat_lookup(ipc_callid_t, ipc_call_t *); |
149 | extern void node_del_mp(int, unsigned long); |
- | 150 | extern bool node_is_mp(int, unsigned long); |
|
141 | 151 | ||
142 | #endif |
152 | #endif |
143 | 153 | ||
144 | /** |
154 | /** |
145 | * @} |
155 | * @} |