Changeset 6ba36a0 in mainline for uspace/lib/ext4/include/ext4/cfg.h
- Timestamp:
- 2018-10-03T15:31:58Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9b0ceb1
- Parents:
- b209135
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/include/ext4/cfg.h
rb209135 r6ba36a0 34 34 #define LIBEXT4_CFG_H_ 35 35 36 #include "types.h" 37 36 38 /** Versions available to choose from when creating a new file system. */ 37 39 typedef enum { … … 45 47 #define ext4_def_fs_version extver_ext2 46 48 49 /** Configuration of a new ext4 file system */ 50 typedef struct { 51 /** File system version */ 52 ext4_cfg_ver_t version; 53 /** Volume name encoded as UTF-8 string */ 54 const char *volume_name; 55 } ext4_cfg_t; 56 47 57 #endif 48 58
Note:
See TracChangeset
for help on using the changeset viewer.