Jens Arnold | 3e67e3b | 2009-02-20 17:13:08 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2009 by Jens Arnold |
| 11 | * |
| 12 | * Rockbox simulator specific tasks |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License |
| 16 | * as published by the Free Software Foundation; either version 2 |
| 17 | * of the License, or (at your option) any later version. |
| 18 | * |
| 19 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 20 | * KIND, either express or implied. |
| 21 | * |
| 22 | ****************************************************************************/ |
| 23 | |
Thomas Martitz | 1645c14 | 2011-11-17 18:40:00 +0000 | [diff] [blame] | 24 | |
| 25 | #ifndef __SIM_TASKS_H__ |
| 26 | #define __SIM_TASKS_H__ |
| 27 | |
Jens Arnold | 3e67e3b | 2009-02-20 17:13:08 +0000 | [diff] [blame] | 28 | void sim_tasks_init(void); |
| 29 | void sim_trigger_screendump(void); |
Thomas Martitz | 1645c14 | 2011-11-17 18:40:00 +0000 | [diff] [blame] | 30 | void sim_trigger_usb(bool inserted); |
Thomas Martitz | facbaab | 2014-02-21 11:25:07 +0100 | [diff] [blame] | 31 | void sim_trigger_external(bool inserted); |
Thomas Martitz | 1645c14 | 2011-11-17 18:40:00 +0000 | [diff] [blame] | 32 | |
| 33 | #endif |