dfs_init.h 985 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. +------------------------------------------------------------------------------
  3. | Project : Device Filesystem
  4. +------------------------------------------------------------------------------
  5. | Copyright 2004, 2005 www.fayfayspace.org.
  6. | All rights reserved.
  7. |------------------------------------------------------------------------------
  8. | File : dfs_init.h, the initilization definitions of Device FileSystem
  9. |------------------------------------------------------------------------------
  10. | Chang Logs:
  11. | Date Author Notes
  12. | 2005-02-21 ffxz The first version.
  13. +------------------------------------------------------------------------------
  14. */
  15. #ifndef __DFS_INIT_H__
  16. #define __DFS_INIT_H__
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /* initilization of dfs */
  21. void dfs_init(void);
  22. /* initilization of dfs with filesystem server */
  23. void dfs_server_init(void);
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif