mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
26 lines
385 B
C
26 lines
385 B
C
|
/*
|
||
|
* \brief RFKILL interface
|
||
|
* \author Josef Soentgen
|
||
|
* \date 2018-07-11
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2018 Genode Labs GmbH
|
||
|
*
|
||
|
* This file is distributed under the terms of the GNU General Public License
|
||
|
* version 2.
|
||
|
*/
|
||
|
|
||
|
#ifndef _WIFI__RFKILL_H_
|
||
|
#define _WIFI__RFKILL_H_
|
||
|
|
||
|
|
||
|
namespace Wifi {
|
||
|
|
||
|
enum { RFKILL_FD = 42, };
|
||
|
}
|
||
|
|
||
|
bool wifi_get_rfkill(void);
|
||
|
|
||
|
#endif /* _WIFI__RFKILL_H_ */
|