libcdio
[mplayer.git] / parser-mecmd.h
blobabbb00a9fb1b547545a9af835bd82edeeefc70c1
2 /// A simple parser with per-entry settings.
4 typedef struct m_entry_st {
5 char* name; // Filename, url or whatever
6 char** opts; // NULL terminated list of name,val pairs
7 } m_entry_t;
9 // Free a list returned by m_config_parse_command_line
10 void
11 m_entry_list_free(m_entry_t* lst);
12 // Use this when you switch to another entry
13 int
14 m_entry_set_options(m_config_t *config, m_entry_t* entry);
16 m_entry_t*
17 m_config_parse_me_command_line(m_config_t *config, int argc, char **argv);