0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/mp-opt-reg.c

19 lines
283 B
C
Raw Normal View History

#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include "cfgparser.h"
#ifdef HAVE_NEW_INPUT
extern void mp_input_register_options(m_config_t* cfg);
#endif
void
mp_register_options(m_config_t* cfg) {
#ifdef HAVE_NEW_INPUT
mp_input_register_options(cfg);
#endif
}