blob: 5decf64ee2eda5f05e546bc563d9e4939fb2690a [file] [log] [blame]
Roshan Piuscc817562017-12-22 14:45:05 -08001/*
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
14extern "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 */
23int hostapd_hidl_init(struct hapd_interfaces *interfaces);
24void hostapd_hidl_deinit(struct hapd_interfaces *interfaces);
25
26#ifdef __cplusplus
27}
28#endif // _cplusplus
29
30#endif // HOSTAPD_HIDL_HIDL_H