24 lines
410 B
C
24 lines
410 B
C
|
#ifndef __APP_MAIN_H__
|
||
|
#define __APP_MAIN_H__
|
||
|
|
||
|
#include "workqueue.h"
|
||
|
|
||
|
//#define SRC_CLEAR_SRC "src:clear_all_suspends"
|
||
|
#define SRC_CONNECT_AP "src:to_connect_ap"
|
||
|
#define SRC_CONNECT_SERVER "src:to_connect_server"
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
void app_main_init();
|
||
|
void app_main_deinit();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif /* __APP_MAIN_H__ */
|