diff options
| author | Damien George | 2018-06-06 12:00:23 +1000 |
|---|---|---|
| committer | Damien George | 2018-06-06 14:28:23 +1000 |
| commit | f35aae366c4fd54a166960f830b4f93608d847cb (patch) | |
| tree | 3ab48acc719329c066096fe648cb837e123887f5 /extmod/vfs_fat.h | |
| parent | 172c23fe5d2efd464433c1d80304b8f3d54e7961 (diff) | |
extmod/vfs_fat: Rename FileIO/TextIO types to mp_type_vfs_fat_XXX.
So they don't clash with other VFS implementations.
Diffstat (limited to 'extmod/vfs_fat.h')
| -rw-r--r-- | extmod/vfs_fat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extmod/vfs_fat.h b/extmod/vfs_fat.h index da56a9077..e0836a555 100644 --- a/extmod/vfs_fat.h +++ b/extmod/vfs_fat.h @@ -55,6 +55,8 @@ typedef struct _fs_user_mount_t { extern const byte fresult_to_errno_table[20]; extern const mp_obj_type_t mp_fat_vfs_type; +extern const mp_obj_type_t mp_type_vfs_fat_fileio; +extern const mp_obj_type_t mp_type_vfs_fat_textio; mp_import_stat_t fat_vfs_import_stat(struct _fs_user_mount_t *vfs, const char *path); MP_DECLARE_CONST_FUN_OBJ_3(fat_vfs_open_obj); |
