2011-10-08 22:50:08 +08:00
|
|
|
/*
|
2011-12-23 10:11:55 +08:00
|
|
|
* File : dfs_elm.h
|
|
|
|
* This file is part of Device File System in RT-Thread RTOS
|
2012-12-26 09:12:13 +08:00
|
|
|
* COPYRIGHT (C) 2008-2012, RT-Thread Development Team
|
2011-12-23 10:11:55 +08:00
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2010-02-06 Bernard Add elm_init function declaration
|
|
|
|
*/
|
2011-10-08 22:50:08 +08:00
|
|
|
|
|
|
|
#ifndef __DFS_ELM_H__
|
|
|
|
#define __DFS_ELM_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int elm_init(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|