c8e69dfb71
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10669 a1c6a512-1295-4272-9138-f99709370657
14 lines
217 B
C
14 lines
217 B
C
|
|
#include "plugin.h"
|
|
|
|
struct mpeg_settings {
|
|
int showfps;
|
|
int limitfps;
|
|
int skipframes;
|
|
};
|
|
|
|
extern struct mpeg_settings settings;
|
|
|
|
bool mpeg_menu(void);
|
|
void init_settings(void);
|
|
void save_settings(void);
|