Changeset 4c53333 in mainline for uspace/srv/fs/udf/udf_idx.h
- Timestamp:
- 2013-07-11T08:21:10Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 64e63ce1
- Parents:
- 80445cf (diff), c8bb1633 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/udf/udf_idx.h
r80445cf r4c53333 1 1 /* 2 * Copyright (c) 201 1 Martin Sucha2 * Copyright (c) 2012 Julia Medvedeva 3 3 * All rights reserved. 4 4 * … … 29 29 /** @addtogroup fs 30 30 * @{ 31 */ 31 */ 32 32 33 #ifndef EXT2FS_EXT2FS_H_34 #define EXT2FS_EXT2FS_H_33 #ifndef UDF_IDX_H_ 34 #define UDF_IDX_H_ 35 35 36 #include <libext2.h> 37 #include <libfs.h> 38 #include <sys/types.h> 36 #include "udf.h" 39 37 40 #define min(a, b) ((a) < (b) ? (a) : (b)) 38 extern int udf_idx_init(void); 39 extern int udf_idx_fini(void); 40 extern int udf_idx_get(udf_node_t **, udf_instance_t *, fs_index_t); 41 extern int udf_idx_add(udf_node_t **, udf_instance_t *, fs_index_t); 42 extern int udf_idx_del(udf_node_t *); 41 43 42 extern vfs_out_ops_t ext2fs_ops; 43 extern libfs_ops_t ext2fs_libfs_ops; 44 45 extern int ext2fs_global_init(void); 46 extern int ext2fs_global_fini(void); 47 48 #endif 44 #endif /* UDF_IDX_H_ */ 49 45 50 46 /**
Note:
See TracChangeset
for help on using the changeset viewer.