rt-thread-official/components/dfs/filesystems/romfs/dfs_romfs.h

32 lines
634 B
C
Raw Normal View History

2013-01-08 22:40:58 +08:00
/*
2019-01-13 14:31:55 +08:00
* Copyright (c) 2006-2019, RT-Thread Development Team
2013-01-08 22:40:58 +08:00
*
* SPDX-License-Identifier: Apache-2.0
2013-01-08 22:40:58 +08:00
*
* Change Logs:
* Date Author Notes
2019-01-13 14:31:55 +08:00
* 2019/01/13 Bernard code cleanup
2013-01-08 22:40:58 +08:00
*/
#ifndef __DFS_ROMFS_H__
#define __DFS_ROMFS_H__
#include <rtthread.h>
2019-04-03 18:09:52 +08:00
#define ROMFS_DIRENT_FILE 0x00
#define ROMFS_DIRENT_DIR 0x01
2013-01-08 22:40:58 +08:00
struct romfs_dirent
{
2019-01-13 14:33:24 +08:00
rt_uint32_t type; /* dirent type */
2013-01-08 22:40:58 +08:00
2019-01-13 14:31:55 +08:00
const char *name; /* dirent name */
const rt_uint8_t *data; /* file date ptr */
rt_size_t size; /* file size */
2013-01-08 22:40:58 +08:00
};
int dfs_romfs_init(void);
extern const struct romfs_dirent romfs_root;
#endif