Changes in uspace/lib/fs/libfs.h [991f645:63f8966] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/fs/libfs.h
r991f645 r63f8966 47 47 int phone; 48 48 fs_handle_t fs_handle; 49 dev map_handle_t devmap_handle;49 dev_handle_t dev_handle; 50 50 } mp_data_t; 51 51 … … 61 61 * argument holds the output argument. 62 62 */ 63 int (* root_get)(fs_node_t **, dev map_handle_t);63 int (* root_get)(fs_node_t **, dev_handle_t); 64 64 int (* match)(fs_node_t **, fs_node_t *, const char *); 65 int (* node_get)(fs_node_t **, dev map_handle_t, fs_index_t);65 int (* node_get)(fs_node_t **, dev_handle_t, fs_index_t); 66 66 int (* node_open)(fs_node_t *); 67 67 int (* node_put)(fs_node_t *); 68 int (* create)(fs_node_t **, dev map_handle_t, int);68 int (* create)(fs_node_t **, dev_handle_t, int); 69 69 int (* destroy)(fs_node_t *); 70 70 int (* link)(fs_node_t *, fs_node_t *, const char *); … … 81 81 bool (* is_directory)(fs_node_t *); 82 82 bool (* is_file)(fs_node_t *); 83 dev map_handle_t (* device_get)(fs_node_t *);83 dev_handle_t (* device_get)(fs_node_t *); 84 84 } libfs_ops_t; 85 85
Note:
See TracChangeset
for help on using the changeset viewer.