1
0
Fork 0
forked from len0rd/rockbox

Flash plugin requires recorder for now

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3894 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2003-07-27 08:03:30 +00:00
parent 5eee7dcdc6
commit 066857e9b9

View file

@ -22,6 +22,7 @@
/* Only build for target */
#ifndef SIMULATOR
#ifdef HAVE_LCD_BITMAP
#ifndef UINT8
#define UINT8 unsigned char
@ -450,8 +451,6 @@ unsigned VerifyImageFile(char* filename, UINT8* pos,
/***************** User Interface Functions *****************/
/* (to be changed for Player) */
#ifdef HAVE_LCD_BITMAP
/* helper for DoUserDialog() */
void ShowFlashInfo(tFlashInfo* pInfo, tImageHeader* pImageHeader)
{
@ -656,16 +655,6 @@ void DoUserDialog(char* filename)
button = rb->button_get(true);
}
#else /* HAVE_LCD_BITMAP */
/* Player implementation has to go here */
void DoUserDialog(void)
{
}
#endif /* HAVE_LCD_BITMAP */
/***************** Plugin Entry Point *****************/
enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
@ -691,3 +680,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
}
#endif
#endif