/*1* Copyright (C) 2007 Ivo van Doorn2* Copyright 2009 Johannes Berg <[email protected]>3*/45/*6* This program is free software; you can redistribute it and/or modify it7* under the terms of the GNU General Public License version 2 as published8* by the Free Software Foundation.9*/1011#ifndef __RFKILL_INPUT_H12#define __RFKILL_INPUT_H1314/* core code */15void rfkill_switch_all(const enum rfkill_type type, bool blocked);16void rfkill_epo(void);17void rfkill_restore_states(void);18void rfkill_remove_epo_lock(void);19bool rfkill_is_epo_lock_active(void);20bool rfkill_get_global_sw_state(const enum rfkill_type type);2122/* input handler */23int rfkill_handler_init(void);24void rfkill_handler_exit(void);2526#endif /* __RFKILL_INPUT_H */272829