10l: comparison of char* ptrs with string literals
[mplayer.git] / parser-mecmd.h
blob73da87fd5b6824f4acd142c388b1961c3e123cb1
2 /// \file
3 /// \ingroup ConfigParsers MEntry
4 /// \brief A simple parser with per-entry settings.
6 /// \defgroup MEntry MEncoder's playlist
7 ///@{
9 /// Playlist entry
10 typedef struct m_entry_st {
11 /// Filename, url or whatever.
12 char* name;
13 /// NULL terminated list of name,val pairs.
14 char** opts;
15 } m_entry_t;
17 /// Free a list returned by \ref m_config_parse_me_command_line.
18 void
19 m_entry_list_free(m_entry_t* lst);
21 /// Helper to set all config options from an entry.
22 int
23 m_entry_set_options(m_config_t *config, m_entry_t* entry);
25 /// Setup the \ref Config from command line arguments and build a playlist.
26 /** \ingroup ConfigParsers
28 m_entry_t*
29 m_config_parse_me_command_line(m_config_t *config, int argc, char **argv);
31 ///@}