blob: cd2dcd23438c30e266347d93c3f88782a4e05785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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);
|