2010-09-14 12:45:45 +08:00
|
|
|
/*
|
2011-01-16 21:30:54 +08:00
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
| Project : Device Filesystem
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
| Copyright 2010
|
|
|
|
| All rights reserved.
|
|
|
|
|------------------------------------------------------------------------------
|
|
|
|
| File : dfs_uffs.h
|
|
|
|
|------------------------------------------------------------------------------
|
|
|
|
| Chang Logs:
|
|
|
|
| Date Author Notes
|
2011-01-16 23:16:09 +08:00
|
|
|
| 2010-09-02 Bernard The first version.
|
2011-01-16 21:30:54 +08:00
|
|
|
| 2010-12-24 amsl Add dfs_uffs_init function declaration
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
*/
|
2010-09-14 12:45:45 +08:00
|
|
|
|
|
|
|
#ifndef __DFS_UFFS_H__
|
|
|
|
#define __DFS_UFFS_H__
|
|
|
|
|
2011-01-16 21:30:54 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-09-14 12:45:45 +08:00
|
|
|
int dfs_uffs_init(void);
|
|
|
|
|
2011-01-16 21:30:54 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2010-09-14 12:45:45 +08:00
|
|
|
#endif
|
2011-01-16 21:30:54 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|