iapp.h
来自「hostapd无线AP工具」· C头文件 代码 · 共 32 行
H
32 行
#ifndef IAPP_H#define IAPP_Hstruct iapp_data;#ifdef CONFIG_IAPPvoid iapp_new_station(struct iapp_data *iapp, struct sta_info *sta);struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface);void iapp_deinit(struct iapp_data *iapp);#else /* CONFIG_IAPP */static inline void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta){}static inline struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface){ return NULL;}static inline void iapp_deinit(struct iapp_data *iapp){}#endif /* CONFIG_IAPP */#endif /* IAPP_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?