Roshan Pius | cc81756 | 2017-12-22 14:45:05 -0800 | [diff] [blame] | 1 | /* |
| 2 | * hidl interface for wpa_supplicant daemon |
| 3 | * Copyright (c) 2004-2018, Jouni Malinen <j@w1.fi> |
| 4 | * Copyright (c) 2004-2018, Roshan Pius <rpius@google.com> |
| 5 | * |
| 6 | * This software may be distributed under the terms of the BSD license. |
| 7 | * See README for more details. |
| 8 | */ |
| 9 | |
| 10 | #ifndef HOSTAPD_HIDL_HIDL_H |
| 11 | #define HOSTAPD_HIDL_HIDL_H |
| 12 | |
| 13 | #ifdef __cplusplus |
| 14 | extern "C" |
| 15 | { |
| 16 | #endif // _cplusplus |
| 17 | #include "ap/hostapd.h" |
| 18 | |
| 19 | /** |
| 20 | * This is the hidl RPC interface entry point to the hostapd core. |
| 21 | * This initializes the hidl driver & IHostapd instance. |
| 22 | */ |
| 23 | int hostapd_hidl_init(struct hapd_interfaces *interfaces); |
| 24 | void hostapd_hidl_deinit(struct hapd_interfaces *interfaces); |
| 25 | |
| 26 | #ifdef __cplusplus |
| 27 | } |
| 28 | #endif // _cplusplus |
| 29 | |
| 30 | #endif // HOSTAPD_HIDL_HIDL_H |