Commit 3f8d4e61 authored by Laurent Aimar's avatar Laurent Aimar

Document a bit option flags.

parent 5f62f401
......@@ -118,7 +118,12 @@ VLC_EXPORT( void, input_item_AddSubItem, ( input_item_t *p_parent, input_item_t
*/
enum input_item_option_e
{
/* Allow VLC to trust the given option.
* By default options are untrusted */
VLC_INPUT_OPTION_TRUSTED = 0x2,
/* Change the value associated to an option if already present, otherwise
* add the option */
VLC_INPUT_OPTION_UNIQUE = 0x100,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment