blob: 2bcd09d1147b190d1945088a6281564b0a18b010 [file] [log] [blame]
Jens Arnold3e67e3b2009-02-20 17:13:08 +00001/***************************************************************************
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 Martitz1645c142011-11-17 18:40:00 +000024
25#ifndef __SIM_TASKS_H__
26#define __SIM_TASKS_H__
27
Jens Arnold3e67e3b2009-02-20 17:13:08 +000028void sim_tasks_init(void);
29void sim_trigger_screendump(void);
Thomas Martitz1645c142011-11-17 18:40:00 +000030void sim_trigger_usb(bool inserted);
Thomas Martitzfacbaab2014-02-21 11:25:07 +010031void sim_trigger_external(bool inserted);
Thomas Martitz1645c142011-11-17 18:40:00 +000032
33#endif