include/nuttx/fs/nxffs.h: Needs forward reference to struct mtd_dev_s and needs to include stdbool.h
This commit is contained in:
parent
e568b08b04
commit
79c9e25a12
|
@ -41,6 +41,9 @@
|
|||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <nuttx/fs/fs.h>
|
||||
|
||||
/****************************************************************************
|
||||
|
@ -134,6 +137,7 @@ extern "C"
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
struct mtd_dev_s;
|
||||
int nxffs_initialize(FAR struct mtd_dev_s *mtd);
|
||||
|
||||
/****************************************************************************
|
||||
|
@ -154,6 +158,7 @@ int nxffs_initialize(FAR struct mtd_dev_s *mtd);
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
struct mtd_dev_s;
|
||||
int nxffs_dump(FAR struct mtd_dev_s *mtd, bool verbose);
|
||||
|
||||
#undef EXTERN
|
||||
|
|
Loading…
Reference in New Issue