2011-10-08 22:50:08 +08:00
|
|
|
/*
|
2018-10-15 01:46:07 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2011-12-23 10:11:55 +08:00
|
|
|
*
|
2018-10-15 01:46:07 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-12-23 10:11:55 +08:00
|
|
|
*
|
|
|
|
* 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
|