Embedded Wireless Framework
ewf_adapter_api_control.h
Go to the documentation of this file.
1 /************************************************************************/
8 #ifndef __ewf_adapter_control__h__included__
9 #define __ewf_adapter_control__h__included__
10 
11 #include "ewf.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 /************************************************************************/
28 {
29  ewf_result(*start)(ewf_adapter* adapter_ptr);
30  ewf_result(*stop)(ewf_adapter* adapter_ptr);
31 
33 
39 
45 
46 /************************************************************************/
50 #ifdef __cplusplus
51 }
52 #endif
53 
54 #endif /* __ewf_adapter_control__h__included__ */
The Embedded Wireless Framework.
struct _ewf_adapter_api_control ewf_adapter_api_control
The adapter control API type.
ewf_result ewf_adapter_start(ewf_adapter *adapter_ptr)
Starts the adapter.
Definition: ewf_adapter_api_control.c:21
ewf_result ewf_adapter_stop(ewf_adapter *adapter_ptr)
Stops the adapter.
Definition: ewf_adapter_api_control.c:28
enum _ewf_result ewf_result
Success and error result codes specific to the EWF API.
The adapter control API type.
Definition: ewf_adapter_api_control.h:28
The EWF network adapter control structure definition.
Definition: ewf_adapter.h:50