include/nuttx/fs/nxffs.h: Needs forward reference to struct mtd_dev_s and needs to include stdbool.h

This commit is contained in:
Gregory Nutt 2016-10-09 14:07:19 -06:00
parent e568b08b04
commit 79c9e25a12
1 changed files with 5 additions and 0 deletions

View File

@ -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