yaffscfg.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:0k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. * Header file for using yaffs in an application via
  3. * a direct interface.
  4. */
  5. #ifndef __YAFFSCFG_H__
  6. #define __YAFFSCFG_H__
  7. #include "devextras.h"
  8. #define YAFFSFS_N_HANDLES 200
  9. typedef struct {
  10. const char *prefix;
  11. struct yaffs_DeviceStruct *dev;
  12. } yaffsfs_DeviceConfiguration;
  13. void yaffsfs_Lock(void);
  14. void yaffsfs_Unlock(void);
  15. __u32 yaffsfs_CurrentTime(void);
  16. void yaffsfs_SetError(int err);
  17. #endif