dfs_romfs.h 571 字节
Newer Older
M
Ming, Bai 已提交
1
/*
2
 * Copyright (c) 2006-2018, RT-Thread Development Team
M
Ming, Bai 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
M
Ming, Bai 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * Change Logs:
 * Date           Author       Notes
 */

#ifndef __DFS_ROMFS_H__
#define __DFS_ROMFS_H__

#include <rtthread.h>

#define ROMFS_DIRENT_FILE	0x00
#define ROMFS_DIRENT_DIR	0x01

struct romfs_dirent
{
20
    rt_uint32_t		 type;	/* dirent type */
M
Ming, Bai 已提交
21

22 23 24
    const char		 *name;	/* dirent name */
    const rt_uint8_t *data;	/* file date ptr */
    rt_size_t		 size;	/* file size */
M
Ming, Bai 已提交
25 26 27 28 29 30
};

int dfs_romfs_init(void);
extern const struct romfs_dirent romfs_root;

#endif