Changeset 03362fbd in mainline for uspace/srv/fs/ext4fs/ext4fs.h
- Timestamp:
- 2013-02-09T23:14:45Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22dfd38
- Parents:
- b5d2e57 (diff), 005b765 (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
-
uspace/srv/fs/ext4fs/ext4fs.h (moved) (moved from uspace/srv/fs/ext2fs/ext2fs.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/ext4fs/ext4fs.h
rb5d2e57 r03362fbd 1 1 /* 2 * Copyright (c) 201 1 Martin Sucha2 * Copyright (c) 2012 Frantisek Princ 3 3 * All rights reserved. 4 4 * … … 29 29 /** @addtogroup fs 30 30 * @{ 31 */ 31 */ 32 32 33 #ifndef EXT 2FS_EXT2FS_H_34 #define EXT 2FS_EXT2FS_H_33 #ifndef EXT4FS_EXT4FS_H_ 34 #define EXT4FS_EXT4FS_H_ 35 35 36 #include <libext2.h>37 36 #include <libfs.h> 38 #include <sys/types.h>39 37 40 #define min(a, b) ((a) < (b) ? (a) : (b)) 38 extern vfs_out_ops_t ext4fs_ops; 39 extern libfs_ops_t ext4fs_libfs_ops; 41 40 42 extern vfs_out_ops_t ext2fs_ops;43 extern libfs_ops_t ext2fs_libfs_ops;41 extern int ext4fs_global_init(void); 42 extern int ext4fs_global_fini(void); 44 43 45 extern int ext2fs_global_init(void);46 extern int ext2fs_global_fini(void);47 44 48 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
