2009-10-19 21:19:30 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2010-01-03 14:28:09 +00:00
|
|
|
* $Id$
|
2009-10-19 21:19:30 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Björn Stenberg
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _USB_SCREEN_H_
|
|
|
|
#define _USB_SCREEN_H_
|
|
|
|
|
2010-03-08 23:43:11 +00:00
|
|
|
#ifdef USB_NONE
|
2010-10-14 12:29:19 +00:00
|
|
|
#define gui_usb_screen_run(early_usb) do {} while(0)
|
2010-03-08 23:43:11 +00:00
|
|
|
#else
|
2010-10-10 13:17:39 +00:00
|
|
|
extern void gui_usb_screen_run(bool early_usb);
|
2010-03-08 23:43:11 +00:00
|
|
|
#endif
|
2009-10-19 21:19:30 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|